>> IP( 10.10.10.0/24 )>> 10.10.12.11 in IP( 10.10.11.0/24 ) False>>> 10.10.11.11 in IP( 10.10.1..."/>
您好,登錄后才能下訂單哦!
判斷IP地址和網(wǎng)段是否包含于另一個(gè)網(wǎng)段中
>>> IP('10.10.10.0/24')<IP('10.10.11.0/24')
True
>>> '10.10.12.11' in IP('10.10.11.0/24')
False
>>> '10.10.11.11' in IP('10.10.11.0/24')
True
網(wǎng)段兩個(gè)網(wǎng)段是否有重疊
>>> IP('192.168.0.0/23').overlaps('192.168.1.0/24') #1表示有重疊
1
>>> IP('192.168.2.0/23').overlaps('192.168.1.0/24') #0表示沒重疊
示例
根據(jù)輸入的IP或子網(wǎng)返回網(wǎng)絡(luò)、掩碼、廣播、反向解析、子網(wǎng)數(shù)、IP類型
[root@localhost python2.6]# cat netsimple1.py
#!/usr/bin/env python
#by lineqi
#create time 2015-09-04
from IPy import IP
ip_s = raw_input('please input an IP or net-range:')
ips = IP(ip_s)
if len(ips) >1:
print('net :%s ' % ips.net())
print('netmask :%s ' % ips.netmask())
print('broadcast :%s ' % ips.broadcast())
print('revese address :%s ' % ips.reverseNames()[0]) #輸出第1個(gè)子網(wǎng)地址反向解析
print('subnet :%s ' % len(ips)) #輸出網(wǎng)絡(luò)子網(wǎng)數(shù)
else:
print('reverse address :%s' % ips.reverseNames())
print('iptype :%s' % ips.iptype())
[root@localhost python2.6]# python netsimple1.py
please input an IP or net-range:192.168.1.0/28
net :192.168.1.0
netmask :255.255.255.240
broadcast :192.168.1.15
revese address :0.1.168.192.in-addr.arpa.
subnet :16
iptype :PRIVATE
[root@localhost python2.6]# python netsimple1.py
please input an IP or net-range:192.168.1.23
reverse address :['23.1.168.192.in-addr.arpa.']
iptype :PRIVATE
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。