在Linux上,如何使用python找到本地IP地址/接口的默认网关?
我看到了“如何获取UPnP的内部IP,外部IP和默认网关”的问题,但是接受的解决方案仅显示了如何在Windows上获取网络接口的本地IP地址。
谢谢。
对于那些不想要额外依赖并且不喜欢调用子进程的人来说,通过直接阅读/proc/net/route
,您可以通过以下方式自行完成:
import socket, struct
def get_default_gateway_linux():
"""Read the default gateway directly from /proc."""
with open("/proc/net/route") as fh:
for line in fh:
fields = line.strip().split()
if fields[1] != '00000000' or not int(fields[3], 16) & 2:
continue
return socket.inet_ntoa(struct.pack("<L", int(fields[2], 16)))
我没有要测试的big-endian机器,所以我不确定endianness是否依赖于你的处理器架构,但如果是,用<
替换struct.pack('<L', ...
中的=
,这样代码就会使用机器的原生代码字节顺序。
为了完整性(并扩展alastair的答案),这里有一个使用“netifaces”的例子(在Ubuntu 10.04下测试,但这应该是可移植的):
$ sudo easy_install netifaces
Python 2.6.5 (r265:79063, Oct 1 2012, 22:04:36)
...
$ ipython
...
In [8]: import netifaces
In [9]: gws=netifaces.gateways()
In [10]: gws
Out[10]:
{2: [('192.168.0.254', 'eth0', True)],
'default': {2: ('192.168.0.254', 'eth0')}}
In [11]: gws['default'][netifaces.AF_INET][0]
Out[11]: '192.168.0.254'
“netifaces”的文档:https://pypi.python.org/pypi/netifaces/
似乎http://pypi.python.org/pypi/pynetinfo/0.1.9可以做到这一点,但我还没有测试过它。
最新版本的netifaces
也可以这样做,但与pynetinfo
不同,它可以在Linux以外的系统上运行(包括Windows,OS X,FreeBSD和Solaris)。
def get_ip():
file=os.popen("ifconfig | grep 'addr:'")
data=file.read()
file.close()
bits=data.strip().split('\n')
addresses=[]
for bit in bits:
if bit.strip().startswith("inet "):
other_bits=bit.replace(':', ' ').strip().split(' ')
for obit in other_bits:
if (obit.count('.')==3):
if not obit.startswith("127."):
addresses.append(obit)
break
return addresses
你可以这样得到它(使用python 2.7和Mac OS X Capitan测试,但也应该在GNU / Linux上运行):import subprocess
def system_call(command):
p = subprocess.Popen([command], stdout=subprocess.PIPE, shell=True)
return p.stdout.read()
def get_gateway_address():
return system_call("route -n get default | grep 'gateway' | awk '{print $2}'")
print get_gateway_address()
这里我的解决方案是使用python获取Mac和Linux的默认网关:
import subprocess
import re
import platform
def get_default_gateway_and_interface():
if platform.system() == "Darwin":
route_default_result = subprocess.check_output(["route", "get", "default"])
gateway = re.search(r"\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}", route_default_result).group(0)
default_interface = re.search(r"(?:interface:.)(.*)", route_default_result).group(1)
elif platform.system() == "Linux":
route_default_result = re.findall(r"([\w.][\w.]*'?\w?)", subprocess.check_output(["ip", "route"]))
gateway = route_default_result[2]
default_interface = route_default_result[4]
if route_default_result:
return(gateway, default_interface)
else:
print("(x) Could not read default routes.")
gateway, default_interface = get_default_gateway_and_interface()
print(gateway)