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

How to Grab IP address from ping in Python

我目前正在使用 python 2.7,需要 ping windows 和 linux。

我想创建一个函数,它将 return 来自 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

现在它只是 return 是真还是假,但有什么方法可以 运行 ping(google.com) 并让它 return 216.58.217.206。我有一个服务器和 IP 列表,我需要确保 IP 地址与 FQDN 匹配。

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

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

不确定为什么还没有人尝试过这种方法(无论如何 windows)!

使用 W32_PingStatus

的 WMI 查询

通过这种方法,我们 return 一个充满好东西的对象

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'

输出截图: