web-dev-qa-db-ja.com

Python-localhost IPを取得

可能性のある複製:
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)が必要です。どうすれば入手できますか?

11
VGO

私は通常このコードを使用します:

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で動作します。

編集:

このコードは 使用済み by smerlin in this stackoverflow questionです。

25
sloth

使用できる気の利いたモジュールがあります。そのネティフェイスと呼ばれます。テストのために、仮想環境に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()

お役に立てれば。

17
Gabriel Samfira