python3实现多线程ping一个网段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3实现多线程ping一个网段相关的知识,希望对你有一定的参考价值。

####################################################
"""
 实现多线程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实现多线程ping一个网段的主要内容,如果未能解决你的问题,请参考以下文章

Python多线程拼网段地址脚本

[ SHELL编程 ] shell多线程操作实例

python 多线程 ping

Python3.5+PyQt5多线程+itchat实现微信防撤回桌面版代码

Python3 多线程

Python多线程局域网扫IP的问题