使用socket模块也可以获得域名对应的ip,参考:https://blog.csdn.net/c465869935/article/details/50850598

print socket.gethostbyname('www.baidu.com')

源码下载 https://pypi.python.org/pypi/ping/0.2

fping功能

https://www.cnblogs.com/zhoujie/p/python17.html

适合服务器数量较大时使用,fping命令,它是对一个文件的批量ping,瞬间完成的,如果ping不通,那就较慢,日常ping不通的毕竟是少数,所以这个非常适用。来感受一下,它ping的结果,新建一个文件iplist,里面是IP列表,fping结果如下:

其实结果就两个 is alive / is unrreachable ,其它的中间检测时它自己输出的不用理会。

fping.sh :

#!/bin/bash
rm -f result.txt
cat ipmi_ping.txt | fping > result.txt

思路也很简单,将IP列表读取来写进一个iplist文件,然后再对这个文件fping(调用fping.sh)批量执行的结果写进result文件:

def check_online_ip():
ip = mysql('select * from ip_check') #将IP写进一个文件
if os.path.exists('iplist.txt'):
os.remove('iplist.txt')
iplist= 'iplist.txt'
for i in range(0,len(ip)):
with open(iplist, 'a') as f:
f.write(ip[i][0]+'\n') #对文件中的IP进行fping
p = subprocess.Popen(r'./fping.sh',stdout=subprocess.PIPE)
p.stdout.read()
#读result.txt文件,将IP is unreachable的行提取更新mysql状态为1
result = open('result.txt','r')
content = result.read().split('\n')
for i in range(0,len(content)-1):
tmp = content[i]
ip = tmp[:tmp.index('is')-1]
Status = 0
if 'unreachable' in tmp:
Status = 1
#print i,ip
mysql('update ip_check set Status=%d where IP="%s"'%(Status,ip))
print 'check all ipconnectness over!'

将这个搞成计划任务,每天跑几遍,还是挺赞的。 呵呵。。

代码

#!/usr/bin/env python
"""
A pure python ping implementation using raw socket.
Note that ICMP messages can only be sent from processes running as root.
Derived from ping.c distributed in Linux's netkit. That code is
copyright (c) by The Regents of the University of California.
That code is in turn derived from code written by Mike Muuss of the
US Army Ballistic Research Laboratory in December, and
placed in the public domain. They have my thanks.
Bugs are naturally mine. I'd be glad to hear about them. There are
certainly word - size dependenceies here.
Copyright (c) Matthew Dixon Cowles, <http://www.visi.com/~mdc/>.
Distributable under the terms of the GNU General Public License
version . Provided with no warranties of any sort.
Original Version from Matthew Dixon Cowles:
-> ftp://ftp.visi.com/users/mdc/ping.py
Rewrite by Jens Diemer:
-> http://www.python-forum.de/post-69122.html#69122
Rewrite by George Notaras:
-> http://www.g-loaded.eu/2009/10/30/python-ping/
Fork by Pierre Bourdon:
-> http://bitbucket.org/delroth/python-ping/
Revision history
~~~~~~~~~~~~~~~~
November ,
-----------------
Initial hack. Doesn't do much, but rather than try to guess
what features I (or others) will want in the future, I've only
put in what I need now.
December ,
-----------------
For some reason, the checksum bytes are in the wrong order when
this is run under Solaris .X for SPARC but it works right under
Linux x86. Since I don't know just what's wrong, I'll swap the
bytes always and then do an htons().
December ,
----------------
Changed the struct.pack() calls to pack the checksum and ID as
unsigned. My thanks to Jerome Poincheval for the fix.
May ,
------------
little rewrite by Jens Diemer:
- change socket asterisk import to a normal import
- replace time.time() with time.clock()
- delete "return None" (or change to "return" only)
- in checksum() rename "str" to "source_string"
November ,
----------------
Improved compatibility with GNU/Linux systems.
Fixes by:
* George Notaras -- http://www.g-loaded.eu
Reported by:
* Chris Hallman -- http://cdhallman.blogspot.com
Changes in this release:
- Re-use time.time() instead of time.clock(). The implementation
worked only under Microsoft Windows. Failed on GNU/Linux.
time.clock() behaves differently under the two OSes[].
[] http://docs.python.org/library/time.html#time.clock
September ,
------------------
Little modifications by Georgi Kolev:
- Added quiet_ping function.
- returns percent lost packages, max round trip time, avrg round trip
time
- Added packet size to verbose_ping & quiet_ping functions.
- Bump up version to 0.2
"""
__version__ = "0.2"
import os
import select
import socket
import struct
import sys
import time
# From /usr/include/linux/icmp.h; your milage may vary.
ICMP_ECHO_REQUEST = # Seems to be the same on Solaris.
def checksum(source_string):
"""
I'm not too confident that this is right but testing seems
to suggest that it gives the same answers as in_cksum in ping.c
"""
sum =
count_to = (len(source_string) / ) *
for count in xrange(, count_to, ):
this = ord(source_string[count + ]) * + ord(source_string[count])
sum = sum + this
sum = sum & 0xffffffff # Necessary?
if count_to < len(source_string):
sum = sum + ord(source_string[len(source_string) - ])
sum = sum & 0xffffffff # Necessary?
sum = (sum >> ) + (sum & 0xffff)
sum = sum + (sum >> )
answer = ~sum
answer = answer & 0xffff
# Swap bytes. Bugger me if I know why.
answer = answer >> | (answer << & 0xff00)
return answer
def receive_one_ping(my_socket, id, timeout):
"""
Receive the ping from the socket.
"""
time_left = timeout
while True:
started_select = time.time()
what_ready = select.select([my_socket], [], [], time_left)
how_long_in_select = (time.time() - started_select)
if what_ready[] == []: # Timeout
return
time_received = time.time()
received_packet, addr = my_socket.recvfrom()
icmpHeader = received_packet[:]
type, code, checksum, packet_id, sequence = struct.unpack(
"bbHHh", icmpHeader
)
if packet_id == id:
bytes = struct.calcsize("d")
time_sent = struct.unpack("d", received_packet[: + bytes])[]
return time_received - time_sent
time_left = time_left - how_long_in_select
if time_left <= :
return
def send_one_ping(my_socket, dest_addr, id, psize):
"""
Send one ping to the given >dest_addr<.
"""
dest_addr = socket.gethostbyname(dest_addr)
# Remove header size from packet size
psize = psize -
# Header is type (), code (), checksum (), id (), sequence ()
my_checksum =
# Make a dummy heder with a checksum.
header = struct.pack("bbHHh", ICMP_ECHO_REQUEST, , my_checksum, id, )
bytes = struct.calcsize("d")
data = (psize - bytes) * "Q"
data = struct.pack("d", time.time()) + data
# Calculate the checksum on the data and the dummy header.
my_checksum = checksum(header + data)
# Now that we have the right checksum, we put that in. It's just easier
# to make up a new header than to stuff it into the dummy.
header = struct.pack(
"bbHHh", ICMP_ECHO_REQUEST, , socket.htons(my_checksum), id,
)
packet = header + data
my_socket.sendto(packet, (dest_addr, )) # Don't know about the 1
def do_one(dest_addr, timeout, psize):
"""
Returns either the delay (in seconds) or none on timeout.
"""
icmp = socket.getprotobyname("icmp")
try:
my_socket = socket.socket(socket.AF_INET, socket.SOCK_RAW, icmp)
except socket.error, (errno, msg):
if errno == :
# Operation not permitted
msg = msg + (
" - Note that ICMP messages can only be sent from processes"
" running as root."
)
raise socket.error(msg)
raise # raise the original error
my_id = os.getpid() & 0xFFFF
send_one_ping(my_socket, dest_addr, my_id, psize)
delay = receive_one_ping(my_socket, my_id, timeout)
my_socket.close()
return delay
def verbose_ping(dest_addr, timeout = , count = , psize = ):
"""
Send `count' ping with `psize' size to `dest_addr' with
the given `timeout' and display the result.
"""
for i in xrange(count):
print "ping %s with ..." % dest_addr,
try:
delay = do_one(dest_addr, timeout, psize)
except socket.gaierror, e:
print "failed. (socket error: '%s')" % e[]
break
if delay == None:
print "failed. (timeout within %ssec.)" % timeout
else:
delay = delay *
print "get ping in %0.4fms" % delay
print
def quiet_ping(dest_addr, timeout = , count = , psize = ):
"""
Send `count' ping with `psize' size to `dest_addr' with
the given `timeout' and display the result.
Returns `percent' lost packages, `max' round trip time
and `avrg' round trip time.
"""
mrtt = None
artt = None
lost =
plist = []
for i in xrange(count):
try:
delay = do_one(dest_addr, timeout, psize)
except socket.gaierror, e:
print "failed. (socket error: '%s')" % e[]
break
if delay != None:
delay = delay *
plist.append(delay)
# Find lost package percent
percent_lost = - (len(plist) * / count)
# Find max and avg round trip time
if plist:
mrtt = max(plist)
artt = sum(plist) / len(plist)
return percent_lost, mrtt, artt
if __name__ == '__main__':
#verbose_ping("heise.de")
#verbose_ping("google.com")
#verbose_ping("a-test-url-taht-is-not-available.com")
verbose_ping("www.xd.com")
print quiet_ping("www.xd.com",count=)

说明:

1. 主要是两个函数 verbose_ping(显示的ping) 和 quiet_ping(计算了丢包率,最大延迟和平均延迟)

2. python3.6会不支持里面的部分语法,在pycharm中执行autopep8后即可。并给print加括号,range替换python2 的xrange

#!/usr/bin/env python
"""
A pure python ping implementation using raw socket.
Note that ICMP messages can only be sent from processes running as root.
Derived from ping.c distributed in Linux's netkit. That code is
copyright (c) by The Regents of the University of California.
That code is in turn derived from code written by Mike Muuss of the
US Army Ballistic Research Laboratory in December, and
placed in the public domain. They have my thanks.
Bugs are naturally mine. I'd be glad to hear about them. There are
certainly word - size dependenceies here.
Copyright (c) Matthew Dixon Cowles, <http://www.visi.com/~mdc/>.
Distributable under the terms of the GNU General Public License
version . Provided with no warranties of any sort.
Original Version from Matthew Dixon Cowles:
-> ftp://ftp.visi.com/users/mdc/ping.py
Rewrite by Jens Diemer:
-> http://www.python-forum.de/post-69122.html#69122
Rewrite by George Notaras:
-> http://www.g-loaded.eu/2009/10/30/python-ping/
Fork by Pierre Bourdon:
-> http://bitbucket.org/delroth/python-ping/
Revision history
~~~~~~~~~~~~~~~~
November ,
-----------------
Initial hack. Doesn't do much, but rather than try to guess
what features I (or others) will want in the future, I've only
put in what I need now.
December ,
-----------------
For some reason, the checksum bytes are in the wrong order when
this is run under Solaris .X for SPARC but it works right under
Linux x86. Since I don't know just what's wrong, I'll swap the
bytes always and then do an htons().
December ,
----------------
Changed the struct.pack() calls to pack the checksum and ID as
unsigned. My thanks to Jerome Poincheval for the fix.
May ,
------------
little rewrite by Jens Diemer:
- change socket asterisk import to a normal import
- replace time.time() with time.clock()
- delete "return None" (or change to "return" only)
- in checksum() rename "str" to "source_string"
November ,
----------------
Improved compatibility with GNU/Linux systems.
Fixes by:
* George Notaras -- http://www.g-loaded.eu
Reported by:
* Chris Hallman -- http://cdhallman.blogspot.com
Changes in this release:
- Re-use time.time() instead of time.clock(). The implementation
worked only under Microsoft Windows. Failed on GNU/Linux.
time.clock() behaves differently under the two OSes[].
[] http://docs.python.org/library/time.html#time.clock
September ,
------------------
Little modifications by Georgi Kolev:
- Added quiet_ping function.
- returns percent lost packages, max round trip time, avrg round trip
time
- Added packet size to verbose_ping & quiet_ping functions.
- Bump up version to 0.2
"""
__version__ = "0.2"
import os
import select
import socket
import struct
import sys
import time
# From /usr/include/linux/icmp.h; your milage may vary.
ICMP_ECHO_REQUEST = # Seems to be the same on Solaris. def checksum(source_string):
"""
I'm not too confident that this is right but testing seems
to suggest that it gives the same answers as in_cksum in ping.c
"""
sum =
count_to = (len(source_string) / ) *
for count in xrange(, count_to, ):
this = ord(source_string[count + ]) * + ord(source_string[count])
sum = sum + this
sum = sum & 0xffffffff # Necessary?
if count_to < len(source_string):
sum = sum + ord(source_string[len(source_string) - ])
sum = sum & 0xffffffff # Necessary?
sum = (sum >> ) + (sum & 0xffff)
sum = sum + (sum >> )
answer = ~sum
answer = answer & 0xffff
# Swap bytes. Bugger me if I know why.
answer = answer >> | (answer << & 0xff00)
return answer def receive_one_ping(my_socket, id, timeout):
"""
Receive the ping from the socket.
"""
time_left = timeout
while True:
started_select = time.time()
what_ready = select.select([my_socket], [], [], time_left)
how_long_in_select = (time.time() - started_select)
if what_ready[] == []: # Timeout
return
time_received = time.time()
received_packet, addr = my_socket.recvfrom()
icmpHeader = received_packet[:]
type, code, checksum, packet_id, sequence = struct.unpack(
"bbHHh", icmpHeader
)
if packet_id == id:
bytes = struct.calcsize("d")
time_sent = struct.unpack("d", received_packet[: + bytes])[]
return time_received - time_sent
time_left = time_left - how_long_in_select
if time_left <= :
return def send_one_ping(my_socket, dest_addr, id, psize):
"""
Send one ping to the given >dest_addr<.
"""
dest_addr = socket.gethostbyname(dest_addr)
# Remove header size from packet size
psize = psize -
# Header is type (), code (), checksum (), id (), sequence ()
my_checksum =
# Make a dummy heder with a checksum.
header = struct.pack("bbHHh", ICMP_ECHO_REQUEST, , my_checksum, id, )
bytes = struct.calcsize("d")
data = (psize - bytes) * "Q"
data = struct.pack("d", time.time()) + data
# Calculate the checksum on the data and the dummy header.
my_checksum = checksum(header + data)
# Now that we have the right checksum, we put that in. It's just easier
# to make up a new header than to stuff it into the dummy.
header = struct.pack(
"bbHHh", ICMP_ECHO_REQUEST, , socket.htons(my_checksum), id,
)
packet = header + data
my_socket.sendto(packet, (dest_addr, )) # Don't know about the 1 def do_one(dest_addr, timeout, psize):
"""
Returns either the delay (in seconds) or none on timeout.
"""
icmp = socket.getprotobyname("icmp")
try:
my_socket = socket.socket(socket.AF_INET, socket.SOCK_RAW, icmp)
except socket.error as xxx_todo_changeme:
(errno, msg) = xxx_todo_changeme.args
if errno == :
# Operation not permitted
msg = msg + (
" - Note that ICMP messages can only be sent from processes"
" running as root."
)
raise socket.error(msg)
raise # raise the original error
my_id = os.getpid() & 0xFFFF
send_one_ping(my_socket, dest_addr, my_id, psize)
delay = receive_one_ping(my_socket, my_id, timeout)
my_socket.close()
return delay def verbose_ping(dest_addr, timeout=, count=, psize=):
"""
Send `count' ping with `psize' size to `dest_addr' with
the given `timeout' and display the result.
"""
for i in xrange(count):
print("ping %s with ..." % dest_addr,)
try:
delay = do_one(dest_addr, timeout, psize)
except socket.gaierror as e:
print("failed. (socket error: '%s')" % e[])
break
if delay is None:
print("failed. (timeout within %ssec.)" % timeout)
else:
delay = delay *
print("get ping in %0.4fms" % delay)
print def quiet_ping(dest_addr, timeout=, count=, psize=):
"""
Send `count' ping with `psize' size to `dest_addr' with
the given `timeout' and display the result.
Returns `percent' lost packages, `max' round trip time
and `avrg' round trip time.
"""
mrtt = None
artt = None
lost =
plist = []
for i in range(count):
try:
delay = do_one(dest_addr, timeout, psize)
except socket.gaierror as e:
print("failed. (socket error: '%s')" % e[])
break
if delay is not None:
delay = delay *
plist.append(delay)
# Find lost package percent
percent_lost = - (len(plist) * / count)
# Find max and avg round trip time
if plist:
mrtt = max(plist)
artt = sum(plist) / len(plist)
print(plist)
print(len(plist)) return percent_lost, mrtt, artt # if __name__ == '__main__':
# verbose_ping("heise.de")
# verbose_ping("google.com")
# verbose_ping("a-test-url-taht-is-not-available.com")
# verbose_ping("www.xd.com")
# print quiet_ping("www.xd.com", count=)

python3中的如上文件

3. 补充参考 Python实现快速多线程ping的方法

Python ping 模块的更多相关文章

  1. Python标准模块--threading

    1 模块简介 threading模块在Python1.5.2中首次引入,是低级thread模块的一个增强版.threading模块让线程使用起来更加容易,允许程序同一时间运行多个操作. 不过请注意,P ...

  2. Day05 - Python 常用模块

    1. 模块简介 模块就是一个保存了 Python 代码的文件.模块能定义函数,类和变量.模块里也能包含可执行的代码. 模块也是 Python 对象,具有随机的名字属性用来绑定或引用. 下例是个简单的模 ...

  3. python常用模块-调用系统命令模块(subprocess)

    python常用模块-调用系统命令模块(subprocess) 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. subproces基本上就是为了取代os.system和os.spaw ...

  4. Python的模块引用和查找路径

    模块间相互独立相互引用是任何一种编程语言的基础能力.对于“模块”这个词在各种编程语言中或许是不同的,但我们可以简单认为一个程序文件是一个模块,文件里包含了类或者方法的定义.对于编译型的语言,比如C#中 ...

  5. Python Logging模块的简单使用

    前言 日志是非常重要的,最近有接触到这个,所以系统的看一下Python这个模块的用法.本文即为Logging模块的用法简介,主要参考文章为Python官方文档,链接见参考列表. 另外,Python的H ...

  6. Python标准模块--logging

    1 logging模块简介 logging模块是Python内置的标准模块,主要用于输出运行日志,可以设置输出日志的等级.日志保存路径.日志文件回滚等:相比print,具备如下优点: 可以通过设置不同 ...

  7. python基础-模块

    一.模块介绍                                                                                              ...

  8. python 安装模块

    python安装模块的方法很多,在此仅介绍一种,不需要安装其他附带的pip等,python安装完之后,配置环境变量,我由于中英文分号原因,环境变量始终没能配置成功汗. 1:下载模块的压缩文件解压到任意 ...

  9. python Queue模块

    先看一个很简单的例子 #coding:utf8 import Queue #queue是队列的意思 q=Queue.Queue(maxsize=10) #创建一个queue对象 for i in ra ...

随机推荐

  1. SD Card Formatter for Mac Download

    https://www.sdcard.org/downloads/formatter_4/eula_mac/ SDFormatter Mac版是一款Mac OS平台上的sd卡修复工具,SDFormat ...

  2. HTML5<nav>元素

    HTML5中<nav>元素定义页面导航链接的部分区域,但并不是所有的链接都放到nav元素里面. 实例: <header id="pageHeader"> & ...

  3. 使用max函数计算EXCEL个税公式

    1.Max()函数是求括号内的数的最大值.2.其中,第一和第二个大括号{}内的数,相信作为财务的应该很清楚,就是个人所得税的缴税比例,以及速算个人应缴所得税的相关数据.3.在EXCEL中,使用{}表示 ...

  4. 关于lua 5.3 服务端热更新流程

    脚本的热更新的流程都大同小异, 第一步先保存旧代码的块的数据, 第二部加载新的代码块,第三步将旧代码块的局部和全局数据拷贝到新代码块的对应的 变量中. 在服务器热更新中,主要考虑热更的内容是什么, 一 ...

  5. Flash as3.0 保存MovieClip运动轨迹到json文件

    //放在第一帧调用 import flash.events.Event; import flash.display.MovieClip; stage.addEventListener(Event.EN ...

  6. cocos2d-x中的基本动作

    判断一个精灵被点击: 1.层要接收点击消息.2.回调函数中取得点击坐标.3.取得精灵用boudingBox().containsPoint函数判断.(或使用 convertTouchToNodeSpa ...

  7. iOS中的数据存储方式_Plist

    plist文件只能存储OC常用数据类型(NSString.NSDictionary.NSArray.NSData.NSNumber等类型)而不能直接存储自定义模型对象; 我们拿NSData举例: /* ...

  8. Android读书笔记二

    本章讲到需要Android应用程序以及Android NDK程序来测试Linux驱动,所以所需要的工具都必须配备好.而且对工具的版本也是有一些要求,JDK,Eclipse,ADT,CDT,Androi ...

  9. 《linux设备驱动开发详解》笔记——12linux设备驱动的软件架构思想

    本章重点讲解思想.思想.思想. 12.1 linux驱动的软件架构 下述三种思想,在linux的spi.iic.usb等复杂驱动里广泛使用.后面几节分别对这些思想进行详细说明. 思想1:驱动与设备分离 ...

  10. manjaro kde tim QQ

    deepin-wine-tim