加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

Python快速多线程ping实现

发布时间:2020-12-17 17:07:43 所属栏目:Python 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #!/usr/bin/python#_*_coding:utf-8_*_#'''名称:快速多线程ping程序''' import pexpectimport datetimefrom threading import Thread host=["192.168

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

#!/usr/bin/python
#_*_coding:utf-8_*_
#
'''
名称:快速多线程ping程序
'''
 
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.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)
 
 
执行结果:
[email?protected]:/win/pexpect$ ./ping.py
[2014-04-25 21:30:22.126981] 192.168.1.1 可达
[2014-04-25 21:30:22.148376] 192.168.1.1 可达
[2014-04-25 21:30:22.179846] 192.168.1.1 可达
[2014-04-25 21:30:22.203691] 192.168.1.1 可达
[2014-04-25 21:30:22.227696] 192.168.2.1 可达
[2014-04-25 21:30:22.134049] 超时 192.168.1.123
[2014-04-25 21:30:22.145610] 超时 192.168.2.1
[2014-04-25 21:30:22.157558] 超时 192.168.1.123
[2014-04-25 21:30:22.167898] 超时 192.168.2.1
[2014-04-25 21:30:22.197572] 超时 192.168.1.123
[2014-04-25 21:30:22.202430] 超时 192.168.2.1
[2014-04-25 21:30:22.215561] 超时 192.168.1.123
[2014-04-25 21:30:22.229952] 超时 192.168.1.1

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读