Comment on page
🟢
Host Discovery
eCPPTv2 host discovery techniques.
nmap -sn <target> --disable-arp-ping
nmap -sn -PS <target> --disable-arp-ping
nmap -sn -PA <target> --disable-arp-ping
nmap -sn -PE <target> --disable-arp-ping
fping -A <target>
Send ICMP echo request packets and only display hosts that are alive and specify the number of retries (-r):
fping -A <target> -r <number of retries>
Specify a range of ip addresses such as a whole subnet (-g), send ICMP packets to every host in subnet, display time required to reach host (-e) and force fping to be quiet (-q):
fping -q -a -g <target> <subnet to scan> -r 0 -e
Last modified 11mo ago