parent
46c9a21508
commit
452d8d04c7
|
@ -6,7 +6,7 @@ import os
|
||||||
def get_eth0_ip():
|
def get_eth0_ip():
|
||||||
try:
|
try:
|
||||||
# Get the IP address of the eth0 interface
|
# Get the IP address of the eth0 interface
|
||||||
eth0_ip = str(os.system("ip -4 -o addr show eth0 | awk '{print $4}' | cut -d '/' -f 1 "))
|
eth0_ip = str(os.system("ip -4 -o addr show wlan0 | awk '{print $4}' | cut -d '/' -f 1 "))
|
||||||
return eth0_ip
|
return eth0_ip
|
||||||
except (KeyError, IndexError, OSError) as e:
|
except (KeyError, IndexError, OSError) as e:
|
||||||
print(f"Error getting eth0 IP: {e}")
|
print(f"Error getting eth0 IP: {e}")
|
||||||
|
|
Loading…
Reference in New Issue