可能性のある複製:
Pythonのstdlibを使用したローカルIPアドレスの検索
ローカルホストのIPアドレスを取得するには、socket.gethostbyname(socket.gethostname())
を実行します。しかし、答えは_127.0.0.1
_です。 an_existing_socket.getsockname()[0]
を実行すると、答え_0.0.0.0
_が返されます。
構成ファイルを変更するには、「実際の」IPアドレス(たとえば、192.168.x.x)が必要です。どうすれば入手できますか?
私は通常このコードを使用します:
import os
import socket
if os.name != "nt":
import fcntl
import struct
def get_interface_ip(ifname):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
return socket.inet_ntoa(fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s',
ifname[:15]))[20:24])
def get_lan_ip():
ip = socket.gethostbyname(socket.gethostname())
if ip.startswith("127.") and os.name != "nt":
interfaces = [
"eth0",
"eth1",
"eth2",
"wlan0",
"wlan1",
"wifi0",
"ath0",
"ath1",
"ppp0",
]
for ifname in interfaces:
try:
ip = get_interface_ip(ifname)
break
except IOError:
pass
return ip
Originであることはわかりませんが、Linux/Windowsで動作します。
編集:
使用できる気の利いたモジュールがあります。そのネティフェイスと呼ばれます。テストのために、仮想環境にpip install netifacesをインストールして、次のコードを試してください。
import netifaces
interfaces = netifaces.interfaces()
for i in interfaces:
if i == 'lo':
continue
iface = netifaces.ifaddresses(i).get(netifaces.AF_INET)
if iface != None:
for j in iface:
print j['addr']
それはすべてあなたの環境に依存します。接続されているIPアドレスが1つだけのインターフェイスが1つしかない場合は、次の操作を実行できます。
netifaces.ifaddresses('eth0')[netifaces.AF_INET][0]['addr']
NATの背後にいて、パブリックIPアドレスを知りたい場合は、次のようなものを使用できます。
import urllib2
ret = urllib2.urlopen('https://enabledns.com/ip')
print ret.read()
お役に立てれば。