

To clear the ARP cache in Windows, use the arp command with the -d option: C:\> arp -d How Does ARP Work – Explained To start the elevated command prompt, press the ⊞ Win keybutton to open the start menu, type in cmd to search for the command prompt and press the Ctrl + Shift + Enter to start the command prompt as an administrator. To clear an ARP cache it is required to open an elevated command prompt, otherwise you may receive an error as follows: “The ARP entry deletion failed: The requested operation requires elevation.” To discover all the devices on a LAN, you can ping them all using this one-liner (adjust the IP of your network): C:\> FOR /L %i IN (1,1,254) DO ping -n 1 -w 100 192.168.1.%i | FIND /i "Reply" Clear ARP Cache To record an IP and MAC address of a device on a LAN to the ARP table, simply ping it: C:\> ping 192.168.1.95 Show the ARP table in a verbose mode: C:\> arp -av

To display the current ARP table in Windows, use the arp command with the -a option: C:\> arp -a
#Cisco show mac address arp table how to
In this note i will show how to display the ARP table and how to clear the ARP cache using the Windows arp command.Ĭool Tip: How to show a routing table in Windows! Read more → Windows ARP Command Show ARP Table An ARP ( Address Resolution Protocol) is a communication protocol that works on a “Physical (Data-Link)” layer of a TCP/IP stack and is used to discover a MAC address of a device on a LAN (local-area network) based on its IP address.Īn ARP table is used to store the discovered pairs of the MAC and IP addresses.
