Learn how `arping` verifies presence and MAC addresses of neighbors on a local network quickly and reliably. 19.06.2026 | reading time: 2 min When a host sits on the same Ethernet segment and "ping" fails, `arping` speaks ARP directly to confirm presence and MAC address; this short guide shows why you would use it and how to run it in a lab. ARP ping in practice Try this hands-on example to see `arping` at work: ```sh sudo arping -I eth0 -c 4 192.168.1.10 ``` Typical output might look like this: ```text ARPING 192.168.1.10 from 192.168.1.2 eth0 Unicast reply from 192.168.1.10 [aa:bb:cc:dd:ee:ff] 1.23 ms Unicast reply from 192.168.1.10 [aa:bb:cc:dd:ee:ff] 0.98 ms --- 192.168.1.10 statistics --- 4 packets transmitted, 2 packets received, 50% packet loss ``` When `arping` is the right tool Use `arping` to verify layer-2 reachability, detect duplicate IPs, test gratuitous ARP announcements or wake a host with unsolicited ARP; remember it usually needs root, requires the target to be on the same LAN, and implementations differ slightly so check your man page before relying on advanced flags. Quick flags and caveats Common options include selecting the interface with `-I`, limiting probes with `-c`, and using flood or gratuitous modes on some implementations; be careful: behavior and available switches vary between distributions and the tool will not traverse routers because ARP is link-local. Neighbors and complementary tools Pair `arping` with `ip neigh` to inspect the kernel ARP table, use `arp` or `ip -s link` for static entries and interface details, and run `nmap` for broader host discovery beyond the local segment when you need layer-3 scanning. Final note and next steps `arping` is a focused, fast utility for LAN-level diagnostics; try it in a controlled lab, compare outputs with `ip neigh`, and incorporate it into your troubleshooting checklist as you deepen Linux networking skills — consider pursuing certifications such as CompTIA Linux+ or LPIC-1 and intensive exam preparation at bitsandbytes.academy to formalize that knowledge. Join Bits & Bytes Academy First class LINUX exam preparation. network utilities troubleshooting