X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0c95cd13c3c70cc69c5bddbf6420e326183d5934..28ec4d16dee857ba725ce9a376fb69829bff0592:/lib/python/Components/Network.py diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py index 861d29ef..99afb75d 100644 --- a/lib/python/Components/Network.py +++ b/lib/python/Components/Network.py @@ -120,12 +120,13 @@ class Network: #self.writeNetworkConfig() def getCurrentIP(self): - ip = [0, 0, 0, 0] - try: - print gethostbyname(gethostname()) - ip = gethostbyname(gethostname()).split('.') - except: - print "[Network.py] Could not get current ip (not necessarily an error)" + ipstr = [0,0,0,0] + for x in os.popen("ifconfig eth0 | grep 'inet addr:'", "r").readline().split(' '): + if x.split(':')[0] == "addr": + ipstr = x.split(':')[1].split('.') + ip = [] + for x in ipstr: + ip.append(int(x)) print "[Network.py] got ip " + str(ip) return ip