小编典典

Python-获取本地主机IP

python

获取我的本地主机IP地址socket.gethostbyname(socket.gethostname())。但这给了我答案127.0.0.1。如果我an_existing_socket.getsockname()[0]知道的话0.0.0.0

我需要我的“真实” IP地址(例如192.168.xx)来修改配置文件。我怎么能得到?


阅读 222

收藏
2020-12-20

共1个答案

小编典典

我通常使用以下代码:

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

我不知道它的起源,但是它可以在Linux / Windows上运行。

2020-12-20