使用python获取具有多个网卡的机器的所有外部IP地址的最有效方法是什么?我知道需要一个外部服务器(我有一个可用)但是我无法找到一种方法来找到一个指定用于连接的nic的好方法(所以我可以使用for循环来遍历各种网络)。有关最佳方法的任何建议吗?
答案 0 :(得分:9)
您应该使用netifaces。它被设计为在Mac OS X,Linux和Windows上跨平台。
>>> import netifaces as ni
>>> ni.interfaces()
['lo', 'eth0', 'eth1', 'vboxnet0', 'dummy1']
>>> ni.ifaddresses('eth0')
{17: [{'broadcast': 'ff:ff:ff:ff:ff:ff', 'addr': '00:02:55:7b:b2:f6'}], 2: [{'broadcast': '24.19.161.7', 'netmask': '255.255.255.248', 'addr': '24.19.161.6'}], 10: [{'netmask': 'ffff:ffff:ffff:ffff::', 'addr': 'fe80::202:55ff:fe7b:b2f6%eth0'}]}
>>>
>>> ni.ifaddresses.__doc__
'Obtain information about the specified network interface.\n\nReturns a dict whose keys are equal to the address family constants,\ne.g. netifaces.AF_INET, and whose values are a list of addresses in\nthat family that are attached to the network interface.'
>>> # for the IPv4 address of eth0
>>> ni.ifaddresses('eth0')[2][0]['addr']
'24.19.161.6'
用于索引协议的数字来自/usr/include/linux/socket.h
(在Linux中)...
#define AF_INET 2 /* Internet IP Protocol */
#define AF_INET6 10 /* IP version 6 */
#define AF_PACKET 17 /* Packet family */
答案 1 :(得分:1)
对于一般情况,没有解决方案。考虑本地计算机位于具有两个执行NAT的IP地址的计算机后面的情况。您可以将本地界面更改为您喜欢的任何内容,但您不太可能说服NAT计算机对其传出连接做出不同的路由决策。
答案 2 :(得分:1)
必填: WMI / PyWin32(https://sourceforge.net/projects/pywin32/)
使用以下代码段获取Windows上的网卡IP。
import wmi
c = wmi.WMI()
for interface in c.Win32_NetworkAdapterConfiguration(IPEnabled=1):
print("Description: " + interface.Description)
print("IP: " + str(interface.IPAddress[0]))
print("MAC: " + str(interface.IPAddress[1]))
有关您可以通过访问https://msdn.microsoft.com/en-us/library/aa394217(v=vs.85).aspx
提供Win32_NetworkAdapterConfiguration
的参数的详细信息
答案 3 :(得分:0)
获取所有网卡的地址,无需任何外部软件包
import socket
print socket.gethostbyname_ex(socket.gethostname())[2]
答案 4 :(得分:-1)
使用 subprocess module 连接到常用的系统工具,例如 ifconfig 或 netstat :
>>> import subprocess
>>> print subprocess.check_output(['ifconfig'])