Networking – what’s IPv6 analogue for IPv4 `arp -an` and “arp who-has”

arpipv6lannetworking

In IPv4 world, when you want to talk to another computer, you ask which MAC address claims a given IPv4 address, the arp who-has ... tell ... exchange as per tcpdump, and a cache of such mappings from IPv4 to MAC addresses is usually available though arp -an.

What about IPv6, with manual configuration? IPv6 addresses don't show up on arp -an.

How does one computer discover another one over IPv6 within the same prefix?

Best Answer

Neighbor Discovery Protocol (NDP) is the IPv6 equivalent of the Address Resolution Protocol (ARP), and on the Unix flavors I'm most familiar with (mostly BSDs) the ndp(8) command is the IPv6 equivalent of the arp(8) command.

The command-line options for ndp are often the same as for arp, so ndp -an does exactly what you'd expect.

Related Question