askvity

How do I view the ARP table in Windows?

Published in ARP Table 1 min read

To view the ARP (Address Resolution Protocol) table in Windows, you can use the command line. The ARP table displays the IP addresses and their corresponding MAC addresses on your network.

Viewing the ARP Table

Here's how to display the ARP table:

  1. Open Command Prompt:

    • Press the Windows key, type "cmd," and press Enter.
  2. Run the ARP command:

    • In the Command Prompt window, enter “arp -a.” This command will display the ARP table. (Reference: 16-Sept-2024)
arp -a

Example Output

The output will look something like this:

Interface: 192.168.1.100 --- 0x4
  Internet Address      Physical Address      Type
  192.168.1.1          aa-bb-cc-11-22-33     dynamic
  192.168.1.101        cc-dd-ee-44-55-66     dynamic
  224.0.0.22           01-00-5e-00-00-16     static
  224.0.0.251          01-00-5e-00-00-fb     static

Explanation of Columns

  • Interface: The IP address assigned to the network interface.
  • Internet Address: The IP address of the device.
  • Physical Address: The MAC address that corresponds to the IP address.
  • Type: Indicates whether the entry is "dynamic" (learned) or "static" (manually configured).

Related Articles