Ping Sweeps
Nmap
nmap -sn 192.168.1.1/24Linux Ping Sweep
for i in {1..254} ;do (ping -c 1 x.x.x.$i | grep "bytes from" &) ;doneWindows Ping Sweep
for /L %i in (1,1,255) do @ping -n 1 -w 200 x.x.x.%i > nul && echo x.x.x.%i is up.Last updated