Python实现快速多线程ping的方法
作者:guoyh 时间:2023-05-28 21:35:09
本文实例讲述了Python实现快速多线程ping的方法。分享给大家供大家参考。具体如下:
#!/usr/bin/python
#_*_coding:utf-8_*_
#
'''
名称:快速多线程ping程序
开发:gyhong gyh9711
日期:20:51 2011-04-25
'''
import pexpect
import datetime
from threading import Thread
host=["192.168.1.1","192.168.1.123","192.168.2.1",
"192.168.1.1","192.168.1.123","192.168.2.1",
"192.168.1.1","192.168.1.123","192.168.2.1",
"192.168.1.1","192.168.1.123","192.168.2.1",
"192.168.1.1"]
report_ok=[]
report_error=[]
class PING(Thread):
def __init__(self,ip):
Thread.__init__(self)
self.ip=ip
def run(self):
Curtime = datetime.datetime.now()
#Scrtime = Curtime + datetime.timedelta(0,minute,0)
#print("[%s]主机[%s]" % (Curtime,self.ip))
ping=pexpect.spawn("ping -c1 %s" % (self.ip))
check=ping.expect([pexpect.TIMEOUT,"1 packets transmitted, 1 received, 0% packet loss"],2)
if check == 0:
print("[%s] 超时 %s" % (Curtime,self.ip))
elif check == 1:
print ("[%s] %s 可达" % (Curtime,self.ip))
else:
print("[%s] 主机%s 不可达" % (Curtime,self.ip))
#多线程同时执行
T_thread=[]
for i in host:
t=PING(i)
T_thread.append(t)
for i in range(len(T_thread)):
T_thread[i].start()
#
#print ("\n=========问题主机情况如下==========\n")
#output(report_error)
#print ("\n=========正常主机情况如下==========\n")
#output(report_ok)
执行结果:
administrator@nagios:/win/pexpect$ ./ping.py
[2011-04-25 21:30:22.126981] 192.168.1.1 可达
[2011-04-25 21:30:22.148376] 192.168.1.1 可达
[2011-04-25 21:30:22.179846] 192.168.1.1 可达
[2011-04-25 21:30:22.203691] 192.168.1.1 可达
[2011-04-25 21:30:22.227696] 192.168.2.1 可达
[2011-04-25 21:30:22.134049] 超时 192.168.1.123
[2011-04-25 21:30:22.145610] 超时 192.168.2.1
[2011-04-25 21:30:22.157558] 超时 192.168.1.123
[2011-04-25 21:30:22.167898] 超时 192.168.2.1
[2011-04-25 21:30:22.197572] 超时 192.168.1.123
[2011-04-25 21:30:22.202430] 超时 192.168.2.1
[2011-04-25 21:30:22.215561] 超时 192.168.1.123
[2011-04-25 21:30:22.229952] 超时 192.168.1.1
希望本文所述对大家的Python程序设计有所帮助。
标签:Python,多线程,ping
0
投稿
猜你喜欢
js中更短的 Array 类型转换
2024-04-28 09:47:22
C语言中操作sqlserver数据库案例教程
2024-01-24 17:47:32
SQL Server2019数据库之简单子查询的具有方法
2024-01-21 23:27:31
快速了解Python开发环境Spyder
2023-01-29 14:37:47
Python中遇到的小问题及解决方法汇总
2023-10-14 04:58:35
Java读取数据库表的示例代码
2024-01-15 05:41:08
python实现双链表
2022-06-20 01:47:48
python实现数值积分的Simpson方法实例分析
2023-08-01 17:35:01
Python对切片命名的实现方法
2023-09-30 09:43:15
python检索特定内容的文本文件实例
2022-12-29 12:05:42
将以用户为中心的设计嵌入产品设计和开发流程
2009-08-11 14:27:00
css实现图片倒影效果
2007-11-05 18:29:00
SQL Server 2005安装实例环境图解第1/2页
2024-01-16 13:57:26
python中readline判断文件读取结束的方法
2022-12-14 06:22:51
vscode+PyQt5安装详解步骤
2021-07-27 23:52:55
iscroll碰到Select无法选择下拉刷新的解决办法
2024-05-11 09:33:35
CentOS6.9下mysql 5.7.17安装配置方法图文教程
2024-01-23 12:26:03
清除浮动新说
2009-12-25 18:49:00
asp中InstrRev的语法
2008-01-22 18:14:00
微信小程序按钮点击动画效果的实现
2023-08-26 03:22:21