Explore the world of ARP Scanning: Learn techniques, tools, and see it in action.
ARP (Address Resolution Protocol) scanning is a technique used to discover active devices on a local network by sending ARP requests to all possible IP addresses within a subnet. It maps IP addresses to MAC addresses, helping to identify live hosts on the network.
A command-line tool for ARP scanning available on Linux and macOS.
sudo arp-scan --localnetScans the local network for all active devices.
sudo arp-scan -I eth0 192.168.1.0/24Scans a specific subnet (192.168.1.0/24) using the eth0 interface.
sudo arp-scan --bandwidth=256K 10.0.0.0/8Scans a large network (10.0.0.0/8) with bandwidth limiting to avoid network congestion.