Quantcast
Channel: Getting 127.0.1.1 instead of 192.168.1.* ip ubuntu python - Stack Overflow
Viewing all articles
Browse latest Browse all 7

Answer by Marimuthu for Getting 127.0.1.1 instead of 192.168.1.* ip ubuntu python

$
0
0

i get the same problem what your are facing. but I get the solution with help of my own idea, And don't worry it is simple to use.if you familiar to linux you should heard the ifconfig command which return the informations about the network interfaces, and also you should understand about grep command which filter the lines which consist specified wordsnow just open the terminal and type

ifconfig | grep 255.255.255.0

and hit enter now you will get wlan inet address line alone like below

inet 192.168.43.248  netmask 255.255.255.0  broadcast 192.168.43.255

in your terminalin your python script just insert

#!/usr/bin/env pythonimport subprocesscmd = "ifconfig | grep 255.255.255.0"inet = subprocess.check_output(cmd, shell = True)inet = wlan.decode("utf-8")inet = wlan.split(" ")inet_addr = inet[inet.index("inet")+1]print(inet_addr)

this script return your local ip address, this script works for me and I hope this will work for your linux machineall the best


Viewing all articles
Browse latest Browse all 7

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>