Find all hosts in your local network using this fast ARP scanner. The CLI is written in Rust and provides a minimal scanner that finds all hosts using the ARP protocol. Inspired by the awesome arp-scan project.
Download the arp-scan
binary for Linux.
```bash wget -O arp-scan https://github.com/Saluki/arp-scan-rs/releases/download/v0.2.0/arp-scan-v0.2.0-x86_64-unknown-linux-musl
chmod +x arp-scan ```
List all available network interfaces.
bash
./arp-scan -l
Launch a scan on interface wlp1s0
.
bash
./arp-scan -i wlp1s0
Enhance the scan timeout to 15 seconds (by default, 5 seconds).
bash
./arp-scan -i wlp1s0 -t 15
-h
Display the main help message with all commands and available ARP scan options.
-l
List all available network interfaces. Using this option will only print a list of interfaces and exit the process.
-i eth0
Perform a scan on the network interface eth0
. The first valid IPv4 network on this interface will be used as scan target.
-t 15
Enforce a timeout of at least 15 seconds. This timeout is a minimum value (scans may take a little more time). Default value is 5
.
-n
Switch to numeric mode. This will skip the local hostname resolution process and will only display IP addresses.
-n
Display the ARP scan CLI version and exits the process.
Feel free to suggest an improvement, report a bug, or ask something: https://github.com/saluki/arp-scan-rs/issues