如何从Python中获取ping的IP地址

时间:2017-09-29 20:00:40

标签: python python-2.7 ip ping

我目前正在使用python 2.7,需要ping Windows和Linux。

我想创建一个函数,它将在python脚本中从ping返回IP地址。我目前有这个功能

def ping(host):
    """
    Returns True if host responds to a ping request
    """
    import subprocess, platform

    # Ping parameters as function of OS
    ping_str = "-n 1" if  platform.system().lower()=="windows" else "-c 1"
    args = "ping " + " " + ping_str + " " + host
    need_sh = False if  platform.system().lower()=="windows" else True

    # Ping
    return subprocess.call(args, shell=need_sh) == 0

现在它只返回true或false但有一种方法可以运行ping(google.com)并让它返回216.58.217.206。我有一个服务器和IP列表,我需要确保IP地址与FQDN匹配。

2 个答案:

答案 0 :(得分:2)

您可以使用socket获取主机的IP。

import socket
print(socket.gethostbyname('www.example.com')

答案 1 :(得分:0)

还不确定没有人尝试过这种方法(对于Windows无论如何)!

使用W32_PingStatus的WMI查询

通过这种方法,我们返回一个装满了好东西的对象

import wmi


# new WMI object
c = wmi.WMI()

# here is where the ping actually is triggered
x = c.Win32_PingStatus(Address='google.com')

# how big is this thing? - 1 element
print 'length x: ' ,len(x)


#lets look at the object 'WMI Object:\n'
print x


#print out the whole returned object
# only x[0] element has values in it
print '\nPrint Whole Object - can directly reference the field names:\n'
for i in x:
    print i



#just a single field in the object - Method 1
print 'Method 1 ( i is actually x[0] ) :'
for i in x:
    print 'Response:\t', i.ResponseTime, 'ms'
    print 'TTL:\t', i.TimeToLive


#or better yet directly access the field you want
print '\npinged ', x[0].ProtocolAddress, ' and got reply in ', x[0].ResponseTime, 'ms'

输出屏幕截图:

enter image description here