python 指令碼之 IP地址探測

來源:互聯網
上載者:User

標籤:組合   list   /usr   pen   安裝   臨時   highlight   line   sys   

#!/usr/bin/env python#_*_ coding:utf8 _*_####  該指令碼需要使用fping命令  如果沒有安裝需要提前安裝fping####  yum install fpingimport osip = "10.10.0.1/24"ips = ["10.10.0.1/24", "192.16.17.27/24"]  # 需要查詢的IP的位址區段狀態的輸入列表iplist = ‘iplist‘  # 儲存IP的檔案名稱path = os.path.dirname(os.path.abspath(__file__)) #得到當前檔案夾路徑sh_path = os.path.join(path, iplist)  #組合檔案名稱和路徑iplists = []  #儲存IP的臨時檔案的列表ip_dic = {} #儲存ip和ip狀態的字典 例如:‘10.101.0.185‘: ‘unreachable‘  ‘10.101.0.50‘: ‘alive‘#執行fping命令來擷取,一個段的所有IP的分配情況for i in range(len(ips)):    list_name = sh_path + str(i)  #得到當前儲存IP的檔案名稱    os.system(‘> %s;fping -g %s >> %s‘ % (list_name, ips[i], list_name))    iplists.append(list_name)    with open(list_name) as f:         for data in f.readlines():             temp = data.strip(‘\n‘)             ip_dic[temp.split(" ")[0]] = temp.split(" ")[2]

  

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.