Python 3:从CIDR表示法创建可能的IP地址列表

时间:2009-12-21 19:39:04

标签: python subnet cidr

我已经完成了在python(3.1)中创建一个函数的任务,该函数将采用CIDR表示法并返回可能的ip地址列表。我查看了python.org并发现了这个: http://docs.python.org/dev/py3k/library/ipaddr.html

但是我还没有看到任何可以满足这种需求的东西......我会非常感激任何人都愿意帮助我的方式。提前致谢。 : - )

8 个答案:

答案 0 :(得分:33)

如果您没有使用内置模块,那么有一个名为netaddr的项目,这是我用于处理IP网络的最佳模块。

看一下IP Tutorial,它说明了它与网络一起工作和识别IP的难易程度。简单的例子:

>>> from netaddr import IPNetwork
>>> for ip in IPNetwork('192.0.2.0/23'):
...    print '%s' % ip
...
192.0.2.0
192.0.2.1
192.0.2.2
192.0.2.3
...
192.0.3.252
192.0.3.253
192.0.3.254
192.0.3.255

答案 1 :(得分:8)

我更愿意做一些数学而不是安装外部模块,没有人和我有同样的品味?

#!/usr/bin/env python
# python cidr.py 192.168.1.1/24

import sys, struct, socket

(ip, cidr) = sys.argv[1].split('/')
cidr = int(cidr) 
host_bits = 32 - cidr
i = struct.unpack('>I', socket.inet_aton(ip))[0] # note the endianness
start = (i >> host_bits) << host_bits # clear the host bits
end = start | ((1 << host_bits) - 1)

# excludes the first and last address in the subnet
for i in range(start, end):
    print(socket.inet_ntoa(struct.pack('>I',i)))

答案 2 :(得分:6)

在Python 3中如此简单

>>> import ipaddress
>>> [str(ip) for ip in ipaddress.IPv4Network('192.0.2.0/28')]
['192.0.2.0', '192.0.2.1', '192.0.2.2',
'192.0.2.3', '192.0.2.4', '192.0.2.5',
'192.0.2.6', '192.0.2.7', '192.0.2.8',
'192.0.2.9', '192.0.2.10', '192.0.2.11',
'192.0.2.12', '192.0.2.13', '192.0.2.14',
'192.0.2.15']

答案 3 :(得分:1)

你签出了iptools吗?这似乎是一个相当不错的选择。

答案 4 :(得分:0)

它不在文档中,但浏览源代码表明ipaddr实现了__iter__iterhosts,这正是您想要的。


呃,没关系。

  1. 看起来{3.1}已将ipaddr.py添加到stdlib中,但已被3.1 rc删除。
  2. 我正在查看原始ipaddr.py的来源,这些来源似乎与python.org上的副本分开进化。
  3. 你可以捆绑后者。

答案 5 :(得分:0)

下面的代码将生成提供IP和子网的IP范围。展开CIDR表示法,如(255.255.255.0)

from netaddr import *

def getFirstIp(ipAddress,subnet):
  ipBin = IPNetwork(ipAddress).ip.bits().split('.')
  subBin = IPNetwork(subnet).ip.bits().split('.')
  zipped = zip(ipBin,subBin)
  netIdList = []
  for octets in zipped:
    netIdList.append(''.join(str(b) for b in (map((lambda x: int(x[0])*int(x[1])),zip(list(octets[0]),list(octets[1]))))))
  firstIp = ''
  firstIp = '.'.join(str(int(oct,2)) for oct in netIdList)
  return firstIp


def getLastIp(ipAddress,subnet):
  ipBin = IPNetwork(ipAddress).ip.bits().split('.')
  subBin = IPNetwork(subnet).ip.bits().split('.')
  #print ipBin
  #print subBin
  revsubBin = []
  for octets in subBin:
    revB = ''.join('1' if(b == '0') else '0' for b in octets)
    revsubBin.append(revB)
  zipped = zip(ipBin,revsubBin)
  netIdList = []
  for octets in zipped:
    netIdList.append(''.join(str(b) for b in (map((lambda x: 0 if(int(x[0]) == 0 and int(x[1]) == 0) else 1),zip(list(octets[0]),list(octets[1]))))))
  #print netIdList
  lastIp = ''
  lastIp = '.'.join(str(int(oct,2)) for oct in netIdList)
  return lastIp

def getRangeOfIps(firstIp,lastIp):
  start= int(IPAddress(firstIp))
  end = int(IPAddress(lastIp))
  ipList = []
  for ip in range(start,end+1):
    ipList.append(str(IPAddress(ip)))
  return ipList

def manipulateIP():
 firstIp = getFirstIp(ipAddress,subnet)
 lastIp = getLastIp(ipAddress,subnet)
 ipList = getRangeOfIps(firstIp,lastIp)  
 print ipList 

答案 6 :(得分:0)

生成给定CIDR的所有公共IP地址

  

https://github.com/stephenlb/geo-ip将生成一个有效的IP公共地址列表,包括位置。

'1.0.0.0/8''191.0.0.0/8' 是有效的公共IP地址范围,不包括保留的专用IP地址。

IP生成器

生成IP地址和关联的地理位置信息的JSON转储。 请注意,有效的公共IP地址范围是 从'1.0.0.0/8''191.0.0.0/8',不包括保留 本自述文件的下方显示了私有IP地址范围。

docker build -t geo-ip .
docker run -e IPRANGE='54.0.0.0/30' geo-ip               ## a few IPs
docker run -e IPRANGE='54.0.0.0/26' geo-ip               ## a few more IPs
docker run -e IPRANGE='54.0.0.0/16' geo-ip               ## a lot more IPs
docker run -e IPRANGE='0.0.0.0/0'   geo-ip               ## ALL IPs ( slooooowwwwww )
docker run -e IPRANGE='0.0.0.0/0'   geo-ip > geo-ip.json ## ALL IPs saved to JSON File
docker run geo-ip 

用于扫描所有有效公共地址的更快的选项:

for i in $(seq 1 191); do \
    docker run -e IPRANGE="$i.0.0.0/8" geo-ip; \
    sleep 1; \ 
done

这将少于 4,228,250,625 JSON行打印到STDOUT。 这是其中之一的示例:

{"city": "Palo Alto", "ip": "0.0.0.0", "longitude": -122.1274,
 "continent": "North America", "continent_code": "NA",
 "state": "California", "country": "United States", "latitude": 37.418,
 "iso_code": "US", "state_code": "CA", "aso": "PubNub",
 "asn": "11404", "zip_code": "94107"}

私有和预留IP范围

以上回购中的dockerfile将排除不可用的IP地址 遵循维基百科文章中的指南: https://en.wikipedia.org/wiki/Reserved_IP_addresses

MaxMind Geo IP

dockerfile导入了https://www.maxmind.com/en/home提供的免费公共数据库

答案 7 :(得分:0)

如果你对玩 python 逻辑不感兴趣,我们可以通过使用 python 的 ipaddress lib 来获得它。其他以上解决方案就足够了。

import ipaddress
  
def get_ip_from_subnet(ip_subnet):

    ips= ipaddress.ip_network(ip_subnet)
    ip_list=[str(ip) for ip in ips]
    return ip_list

ip_subnet= "192.168.2.0/24"
print(get_ip_from_subnet(ip_subnet))