netdiscover
discovers network hosts using ARP
TLDR
Scan local network
$ netdiscover
Scan specific rangecopy
$ netdiscover -r [192.168.1.0/24]
Passive modecopy
$ netdiscover -p
Use specific interfacecopy
$ netdiscover -i [eth0]
Fast scancopy
$ netdiscover -f
Scan from filecopy
$ netdiscover -l [ranges.txt]
copy
SYNOPSIS
netdiscover [options]
DESCRIPTION
netdiscover discovers network hosts using ARP. It finds active hosts on local network.The tool sends ARP requests. Shows MAC addresses and vendors.
PARAMETERS
-r RANGE
IP range to scan.-p
Passive mode (listen only).-i IFACE
Network interface.-f
Fast mode.-l FILE
Read ranges from file.--help
Display help information.
CAVEATS
Requires root. Local network only. May trigger IDS alerts.
HISTORY
netdiscover was created for network reconnaissance and discovering hosts on local networks.