如何在python中确定IP地址类。我正在使用python的ipaddress模块。 以下是类定义
Class Private Networks Subnet Mask Address Range
A 10.0.0.0 255.0.0.0 10.0.0.0 - 10.255.255.255
B 172.16.0.0 - 172.31.0.0 255.240.0.0 172.16.0.0 - 172.31.255.255
C 192.168.0.0 255.255.0.0 192.168.0.0 - 192.168.255.255
鉴于IP,我如何检查它是否属于A,B或C类
答案 0 :(得分:2)
使用Tuple
和ipaddress.IPv4Address
类型。
ipaddress.IPv4Network
我给你了元组表格,因为你有网络地址和掩码,但如果你喜欢/ X后缀它也接受它。实际上还有其他一些方法。
要使用它,您只需检查某个from ipaddress import IPv4Address, IPv4Network
classA = IPv4Network(("10.0.0.0", "255.0.0.0")) # or IPv4Network("10.0.0.0\8")
classB = IPv4Network(("172.16.0.0", "255.240.0.0")) # or IPv4Network("172.16.0.0\12")
classC = IPv4Network(("192.168.0.0", "255.2550.0.0")) # or IPv4Network("192.168.0.0\16")
IPv4Address
是in
IPv4Network
,就好像您在list
内找到了一个元素一样:
ip1 = IPv4Address("10.0.2.8")
ip2 = IPv4Address("172.18.76.25")
ip3 = IPv4Address("192.168.45.62")
ip1 in classA # True
ip2 in classA # False
ip3 in classA # False
ip1 in classB # False
ip2 in classB # True
ip3 in classB # False
ip1 in classC # False
ip2 in classC # False
ip3 in classC # True
使用ipaddress.IPv6Address
和ipaddress.IPv6Network
类型,并在创建对象时更正IPv6 ip字符串。
如果同时支持IPv4和IPv6,则可以使用ipaddress.ip_address
和ipaddress.ip_network
便利工厂功能,模块将根据字符串格式创建适当的IPv4或IPv6类。