以下是个人学习 python 研究判断ip连通性方法的集合。 缺点可能有办法解决,如有错误,欢迎矫正。
方法一
1
2
3
|
import os return1=os.system('ping -n 2 -w 1 172.21.1.183') print return1 |
缺点:会弹出cmd 窗口
方法二
1
2
3
4
5
6
7
8
|
#-*- coding: utf-8 -*- import subprocess import re p = subprocess.Popen(["ping.exe ", '172.21.183.183'],stdin = subprocess.PIPE,stdout = subprocess.PIPE,stderr = subprocess.PIPE,shell = True) out = p.stdout.read() print out regex = re.compile("Minimum = (\d+)ms, Maximum = (\d+)ms, Average = (\d+)ms", re.IGNORECASE) print regex.findall(out) |
缺点: 默认ping 4次 暂时没有找到 控制ping次数的方法
方法三
1
2
3
|
from subprocess import call result = call("ping 172.21.4.20 -n 1",shell=True) print result |
缺点,好像不太靠谱
方法四 这个方式应该是linux下的调用,没试过
1
2
3
4
5
6
7
|
import os,sys,re import subprocess p = subprocess.Popen(["ping -c 1 -w 1 172.21.183.183"],stdout=subprocess.PIPE,stderr=subprocess.PIPE,shell=True) out=p.stdout.read() err=p.stderr.read() regex=re.compile('100% packet loss') print out |
以上这篇python 实现判断ip连通性的方法总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/gunzi318/article/details/79178781