发布时间:2019-09-26 07:32:38编辑:auto阅读(2805)
####################################################
"""
实现多线程ping一个网段的地址,测试联通性
copyright 2016/9/30 lighter_py
"""
####################################################
import os
import queue
import threading
class Pinger(threading.Thread):
def __init__(self,queue,pingIp,pingCoint=1):
threading.Thread.__init__(self)
self.queue = queue
self.pingIp = pingIp
self.pingCount = 1
def run(self):
pingResult = os.popen('ping -n' + ' ' + str(self.pingCount) + ' ' +self.pingIp).read()
if '无法访问目标主机' not in pingResult:
print(self.pingIp,'\t is online')
self.queue.get()
class creatpinger:
def __init__(self,queue,pingIpParagraph,allcount=255,pingCount=1):
self.queue = queue
self.pingIpParagraph = pingIpParagraph
self.allcount = allcount
self.pingCount = 1
self.create()
def create(self):
for i in range(1,self.allcount+1):
self.queue.put( i )
Pinger(self.queue,self.pingIpParagraph+str(i),self.pingCount).start()
if __name__ == '__main__':
creatpinger(queue.Queue(100),'192.168.1.')
上一篇: Python3邮件发送简易版
下一篇: Python3 流程控制语句
51021
50399
41015
37882
32347
29240
28121
22954
22922
21251
1126°
1817°
1475°
1415°
1698°
1501°
2161°
3729°
3664°
2577°