在Python中,确定IP地址(例如'127.0.0.1'
或'10.98.76.6'
)是否在private network上的最佳方法是什么?代码听起来不难写。但是可能会有更多边缘情况而不是立即明显,并且需要考虑IPv6支持等。是否有现有的库可以实现它?
答案 0 :(得分:33)
自Python 3.3起,stdlib中就有ipaddress module可以使用。
SELECT idnumber,COUNT(*)
FROM movement
group by IDNumber;
如果使用Python 2.6或更高版本,我强烈建议您使用a backport of this module。
答案 1 :(得分:32)
查看IPy模块。如果函数iptype()
看起来像你想做的那样:
>>> from IPy import IP
>>> ip = IP('127.0.0.0/30')
>>> ip.iptype()
'PRIVATE'
答案 2 :(得分:22)
你可以检查自己使用
http://tools.ietf.org/html/rfc1918和http://tools.ietf.org/html/rfc3330。如果您有127.0.0.1,则只需&
使用掩码(比如说255.0.0.0
)并查看该值是否与任何专用网络的network address匹配。因此,使用inet_pton即可:127.0.0.1 & 255.0.0.0 = 127.0.0.0
以下代码说明了:
from struct import unpack
from socket import AF_INET, inet_pton
def lookup(ip):
f = unpack('!I',inet_pton(AF_INET,ip))[0]
private = (
[ 2130706432, 4278190080 ], # 127.0.0.0, 255.0.0.0 http://tools.ietf.org/html/rfc3330
[ 3232235520, 4294901760 ], # 192.168.0.0, 255.255.0.0 http://tools.ietf.org/html/rfc1918
[ 2886729728, 4293918720 ], # 172.16.0.0, 255.240.0.0 http://tools.ietf.org/html/rfc1918
[ 167772160, 4278190080 ], # 10.0.0.0, 255.0.0.0 http://tools.ietf.org/html/rfc1918
)
for net in private:
if (f & net[1]) == net[0]:
return True
return False
# example
print(lookup("127.0.0.1"))
print(lookup("192.168.10.1"))
print(lookup("10.10.10.10"))
print(lookup("172.17.255.255"))
# outputs True True True True
另一个实现是计算所有私有块的int值:
from struct import unpack
from socket import AF_INET, inet_pton
lookup = "127.0.0.1"
f = unpack('!I',inet_pton(AF_INET,lookup))[0]
private = (["127.0.0.0","255.0.0.0"],["192.168.0.0","255.255.0.0"],["172.16.0.0","255.240.0.0"],["10.0.0.0","255.0.0.0"])
for net in private:
mask = unpack('!I',inet_aton(net[1]))[0]
p = unpack('!I',inet_aton(net[0]))[0]
if (f & mask) == p:
print lookup + " is private"
答案 3 :(得分:5)
这是@Kurt建议的正则表达式方法的固定版本,包括@RobEvans推荐的修复
^ 172。(1 [6-9] | 2 [0-9] | 3 [0-1])。[0-9] {1,3} [0-9] {1 ,3} $
def is_ip_private(ip):
# https://en.wikipedia.org/wiki/Private_network
priv_lo = re.compile("^127\.\d{1,3}\.\d{1,3}\.\d{1,3}$")
priv_24 = re.compile("^10\.\d{1,3}\.\d{1,3}\.\d{1,3}$")
priv_20 = re.compile("^192\.168\.\d{1,3}.\d{1,3}$")
priv_16 = re.compile("^172.(1[6-9]|2[0-9]|3[0-1]).[0-9]{1,3}.[0-9]{1,3}$")
res = priv_lo.match(ip) or priv_24.match(ip) or priv_20.match(ip) or priv_16.match(ip)
return res is not None
答案 4 :(得分:2)
在提出这个问题几天后,我发现了这个Google项目ipaddr-py,该项目似乎在确定地址是否为私有方面具有一些相同的功能(is_rfc1918
) 。显然,这将是Python 3.1中的标准。
答案 5 :(得分:1)
如果您想避免导入模块,只需应用一个简单的正则表达式:
答案 6 :(得分:1)
我在cuckoo中找到了这个。没有必要安装新模块。只需导入两个内置模块:socket和struct。并使用下面的功能。
def _is_private_ip(self, ip):
"""Check if the IP belongs to private network blocks.
@param ip: IP address to verify.
@return: boolean representing whether the IP belongs or not to
a private network block.
"""
networks = [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.88.99.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"240.0.0.0/4",
"255.255.255.255/32",
"224.0.0.0/4",
]
for network in networks:
try:
ipaddr = struct.unpack(">I", socket.inet_aton(ip))[0]
netaddr, bits = network.split("/")
network_low = struct.unpack(">I", socket.inet_aton(netaddr))[0]
network_high = network_low | 1 << (32 - int(bits)) - 1
if ipaddr <= network_high and ipaddr >= network_low:
return True
except Exception,err:
continue
return False