Python多线程批量Ping主机IP的脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python多线程批量Ping主机IP的脚本相关的知识,希望对你有一定的参考价值。

Python 编写多线程 Ping 主机IP的脚本

1. 先编写一个 Ping 主机IP的脚本

ping_ip.py

import subprocess
import time

# 记录开始执行的时间
start_time = time.time()

# 定义用来 ping 的254 个 ip
ip_list = [‘10.3.1.‘+str(i) for i in range(1,255)]  

for ip in ip_list:
    res = subprocess.call(‘ping -n 2 -w 5 %s‘ % ip,stdout=subprocess.PIPE)  # linux 系统将 ‘-n‘ 替换成 ‘-c‘
    print(ip,True if res == 0 else False)

print(‘执行所用时间:%s‘ % (time.time() - start_time))

2. 改造成多线程的脚本

ping_threading.py

import threading
import subprocess
import time
from queue import Queue

# 定义工作线程
WORD_THREAD = 50

# 将需要 ping 的 ip 加入队列
IP_QUEUE = Queue() 
for i in range(1,255):
    IP_QUEUE.put(‘10.3.1.‘+str(i))

# 定义一个执行 ping 的函数
def ping_ip():
    while not IP_QUEUE.empty():
        ip = IP_QUEUE.get()
        res = subprocess.call(‘ping -n 2 -w 5 %s‘ % ip,stdout=subprocess.PIPE)  # linux 系统将 ‘-n‘ 替换成 ‘-c‘
        # 打印运行结果
        print(ip,True if res == 0 else False)

if __name__ == ‘__main__‘:
    threads = []
    start_time = time.time()
    for i in range(WORD_THREAD):
        thread = threading.Thread(target=ping_ip)
        thread.start()
        threads.append(thread)

    for thread in threads:
        thread.join()

    print(‘程序运行耗时:%s‘ % (time.time() - start_time))

3.运行效果对比

单线程的运行结果
技术分享图片
50个线程的运行结果
技术分享图片

以上是关于Python多线程批量Ping主机IP的脚本的主要内容,如果未能解决你的问题,请参考以下文章

批量Ping执行Bash脚本

一个简单的shell小脚本,批量ping主机ip的存活状态

pythontelnet批量连接脚本怎么能多个不同网段连接

python 多线程 popen ping指定IP是否在线 判断连通

超级ping(多线程版)

批量ping 查看主机能否ping通,能否ssh上.md,