>> 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..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

IP地址處理模塊IPy之多網(wǎng)絡(luò)計(jì)算

發(fā)布時(shí)間:2020-08-07 14:51:13 來源:網(wǎng)絡(luò) 閱讀:742 作者:lineqi 欄目:開發(fā)技術(shù)

判斷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



向AI問一下細(xì)節(jié)

免責(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)容。

AI