Python自動化營運——IP地址處理模組

來源:互聯網
上載者:User

標籤:pre   nbsp   cat   參數   imp   .com   反向   bsp   ant   

Infi-chu:

http://www.cnblogs.com/Infi-chu/

 

模組:IPy

功能:輔助我們高效的完成IP的規劃工作

安裝:

wget https://pypi.python.org/packages/source/I/IPy/IPy-0.81.tar.gz --no-check-certificatetar -zxvf Ipy-0.81.tar.gzcd IPy-0.81python setup.py install

IP地址、網段的基本處理:

使用方法:

#from IPy import IP#ip_1 = IP(‘192.168.1.0/24‘)#print(ip_1.len()) # 輸出192.168.1.0/24網段的IP個數#for a in ip_1:# print(a) # 輸出192.168.1.0/24網段的所有IP清單

IP地址的轉化:

#from IPy import IP#ip_2 = IP(‘192.168.1.1‘)#ip_2.reverseNames() # 反響解析地址格式#ip_2.iptype() # 查看IP地址類型#ip_2.int() # 將格式轉換為整型格式#ip_2.strHex() # 將格式轉換為16進位格式#ip_2.strBin() # 將格式轉換為2進位格式#print(IP(0x8188808)) # 將16進位轉化為IP格式

IP網段的轉化:

#from IPy import IP# 輸出192.168.1.0/24#print(IP(‘192.168.1.0‘).make_net(‘255.255.255.0‘))#print(IP(‘192.168.1.0/255.255.255.0‘,make_net=True))#print(IP(‘192.168.1.0-192.168.1.255‘,make_net=True))# 通過strNormal() 方法指定上述三種格式的輸出:#print(IP(‘192.168.1.0/24‘).strNormal(0)) # 參數(wantprefixlen)為0,無返回,輸出192.168.1.0#print(IP(‘192.168.1.0/24‘).strNormal(1)) # 參數(wantprefixlen)為1,prefix格式,輸出192.168.1.0/24#print(IP(‘192.168.1.0/24‘).strNormal(2)) # 參數(wantprefixlen)為2,decimalnetmask格式,輸出192.168.1.0/255.255.255.0#print(IP(‘192.168.1.0/24‘).strNormal(3)) # 參數(wantprefixlen)為3,lastIP格式,輸出192.168.1.0-192.168.1.255

多網路計算方法:

功能:比較兩個網段是否存在包含、重疊等關係,比如192.168.1.0/24 和192.168.1.0/25;192.168.0.0/24 和192.168.1.0/24

使用方法:

#from IPy import IP#IP(‘192.168.0.0/24‘)<IP(‘192.168.1.0/24‘)# 判斷IP地址和網段是否包含於另一個網段中#‘192.168.1.1‘ in IP(‘192.168.1.0/24‘)# 判斷兩個網段是否存在重疊,使用overlaps()方法#IP(‘192.168.0.0/23‘).overlaps(‘192.168.1.0/24‘) # 返回1,表示重疊#IP(‘192.168.1.0/24‘).overlaps(‘192.168.2.0/24‘) # 返回0,表示沒有重疊

根據輸入的IP地址或網段地址,返回網路地址、廣播位址、地址反響解析、子網數、IP類型等資訊:

#from IPy import IP#ip_inp=raw_input(‘輸入IP地址或網段地址‘)#ip=IP(ip_inp)#if len(ip)>1: # 是一個網段# print(‘網路地址是:%s‘ %ip.net())# print(‘子網路遮罩是:%s‘ %ip.netmask())# print(‘廣播位址是:%s‘ %ip.broadcast())# print(‘地址反向解析:%s‘ %ip.reverseName()[0])# print(‘網路子網數為:%s‘ %sip.len())#else: # 是一個IP地址# print(‘IP地址反向解析:%s‘ %ip.reverseName()[0])##print(‘16進位地址:%s‘ %ip.strHex())#print(‘2進位地址:%s‘ %ip.strBin())#print(‘IP地址類型:%s‘ %ip.iptype())

 

Python自動化營運——IP地址處理模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.