Network discovery
netdiscover -i eth0
netdiscover -r <ip>/24
nmap -sn <ip>/24
for i in {1..255}; do (ping -c 1 xxx.xxx.xxx.${i} | grep "bytes from" &); done
$ping = New-Object System.Net.Networkinformation.Ping
1..254 | % { $ping.send("xxx.xxx.xxx.$_") | select address, status }
Last modified 1yr ago