Network discovery
netdiscover
netdiscover(8) - active/passive ARP reconnaissance tool
netdiscover -i eth0netdiscover -r <ip>/24nmap
nmap -sn <ip>/24bash
for i in {1..255}; do (ping -c 1 xxx.xxx.xxx.${i} | grep "bytes from" &); donepowershell
$ping = New-Object System.Net.Networkinformation.Ping
1..254 | % { $ping.send("xxx.xxx.xxx.$_") | select address, status }Last updated