Codebase list python-icmplib / db54a2bb-bf67-4ab6-bc50-11ed6d1a2095/main examples / multiping.py
db54a2bb-bf67-4ab6-bc50-11ed6d1a2095/main

Tree @db54a2bb-bf67-4ab6-bc50-11ed6d1a2095/main (Download .tar.gz)

multiping.py @db54a2bb-bf67-4ab6-bc50-11ed6d1a2095/mainraw · history · blame

'''
    icmplib
    ~~~~~~~

    The power to forge ICMP packets and do ping and traceroute.

        https://github.com/ValentinBELYN/icmplib

    :copyright: Copyright 2017-2021 Valentin BELYN.
    :license: GNU LGPLv3, see the LICENSE for details.

    ~~~~~~~

    Example: multiping
'''

from icmplib import resolve, multiping


addresses = [
    # IPv4 addresses
    '1.1.1.1',
    '8.8.8.8',
    '10.0.0.100',
    '10.0.0.200',

    # IPv6 addresses
    '::1',

    # Hostnames and Fully Qualified Domain Names (FQDNs) are allowed but
    # not recommended. You can easily retrieve their IP address by
    # calling the built-in 'resolve' function. For deterministic
    # behavior, prefer to use an IP address.
    'github.com'
]

hosts = multiping(addresses, count=2, timeout=1)

hosts_alive = []
hosts_dead = []

for host in hosts:
    if host.is_alive:
        hosts_alive.append(host.address)
    else:
        hosts_dead.append(host.address)

print(hosts_alive)
# ['1.1.1.1', '8.8.8.8', '::1', '140.82.121.4']

print(hosts_dead)
# ['10.0.0.100', '10.0.0.200']