-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathmultiping.py
52 lines (37 loc) · 1.05 KB
/
multiping.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'''
icmplib
~~~~~~~
Easily forge ICMP packets and make your own ping and traceroute.
https://github.com/ValentinBELYN/icmplib
:copyright: Copyright 2017-2023 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']