Python: ping网段内所有ip并返回结果

       今天用Python写了一段小代码,实现的功能是ping某一个网段的所有ip,然后将ping的结果提取出来,输出可以ping通的ip以及往返时间。

      初学Python,写得简陋,各位大侠多多指教。

  1. 正则表达式请根据自己的系统进行调整,我这个是中文win7下的结果

  2. Python3.3下测试没问题

  3. ping测试的过程中内存占用较大,不知道可以怎么改进


__author__ = 'wucl'
 
import subprocess, re, _thread, queue, time, threading
 
print('Ping Processing, Please Wait...')
 
regex=re.compile('最短 = (\d+)ms,最长 = (\d+)ms,平均 = (\d+)ms')
ipPrefix='192.168.1.'
decoding='gbk'
 
def ping(ip):
    p=subprocess.Popen(['ping.exe',ip],stdout=subprocess.PIPE)
    out=p.stdout.read()
    result=regex.findall(out.decode(decoding))
    if result:
        printQueue.put('%15s    最短=%2dms,最长=%2dms,平均=%2dms' %(ip,int(result[0][0]),int(result[0][1]),int(result[0][2])))
        return (ip,result[0])
 
def resultPrint(printQueue):
    while True:
        try:
            data=printQueue.get()
        except queue.Empty:
            pass
        else:
            with safeprint:
                print(data)
 
printQueue=queue.Queue()
safeprint=_thread.allocate_lock()
thread=threading.Thread(target=resultPrint,args=(printQueue,))
thread.daemon=True
thread.start()
 
waitfor=[]
 
for i in range(1,255):
    ip=ipPrefix+str(i)
    thread=threading.Thread(target=ping,args=(ip,))
    waitfor.append(thread)
    thread.start()
 
for thread in waitfor:
    thread.join()
 
print('Ping End.')
input('Press Enter to quit.')


### 回答1: 我可以为您提供一个Python样例代码,它可以帮助您通过Python代码ping所有网段:import os # set the network range net_range = "192.168.1.0/24" # create the command to ping command = "ping -c 1 " + net_range # run the command os.system(command) ### 回答2: 使用Python代码ping所有网段可以通过使用ping命令来实现。以下是一个可以实现此功能的Python示例代码: ```python import subprocess def ping_subnet(ip_prefix): for i in range(1, 255): ip = ip_prefix + '.' + str(i) try: subprocess.check_output(["ping", "-c", "1", ip]) # 执行ping命令,发送一个ICMP Echo Request包 print(f"{ip} is reachable") # 如果没有异常,说明地址可达 except subprocess.CalledProcessError: print(f"{ip} is unreachable") # 如果有异常,说明地址不可达 def main(): subnet = "192.168.1" # 假设需ping网段是192.168.1.0/24 ping_subnet(subnet) if __name__ == "__main__": main() ``` 以上代码中,我们定义了一个`ping_subnet`函数,用于循环遍历给定网段下的所有IP地址,并使用`subprocess`模块执行ping命令。通过检查命令执行的返回值,我们可以确定IP地址是否可达,并在控制台输出相应的结果。 在`mai`函数中,我们指定了需要ping网段为"192.168.1",你可以根据实际情况修改此值。 运行这段代码,你将会在控制台看到对于给定网段下的每个IP地址,程序会输出其是否可达。 ### 回答3: 使用Python代码实现ping所有网段的主要步骤如下: 1. 导入`os`模块,使用`os.system()`函数执行命令。 2. 使用循环结构遍历所有网段,例如使用`range()`函数生成IP地址中的第一个和最后一个网段。例如`for i in range(1, 10)`表示遍历1到9的网段。 3. 在循环中构建要执行的命令,使用`os.system()`函数执行ping命令,通过在命令中加入要pingIP地址。 4. 使用if语句判断ping命令的执行结果,通常正常情况下返回值为0,表示ping成功。可以通过检查`os.system()`函数的返回值是否为0来判断是否ping成功。 下面是一个简单的示例代码: ```python import os for i in range(1, 256): ip = "192.168.0." + str(i) response = os.system("ping -n 1 " + ip) if response == 0: print(ip, ' is up!') else: print(ip, ' is down!') ``` 这段代码以`192.168.0.x`的形式遍历了`x`从`1`到`255`的所有网段,然后执行ping命令并判断结果。根据结果输出" is up!"或者" is down!"。 需要注意的是,这段代码的可用性取决于你的操作系统和网络环境,某些操作系统可能需要使用不同的ping命令或者参数,具体情况请参考相关文档或调整代码。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值