Mac – ARP/Mac address table

arpmacnetworking

What is the difference between a mac address table and an arp table? Is it correct to say only one arp cache is kept for each switch which self learns to forward information to another host, and every host on the network has its own mac table, which records the mac address of hosts it wants to send frames to, this information is stored after a broadcast which lead to a host replying with its mac address and mac addresses are removed if unused after 20 minuets to avoid filling up the mac address table.

I just dont know why an arp table /cache differs to a mac table.

Any explanations would be much appreciated.

Best Answer

MAC Table (Layer 2)

The MAC table is used by the switch to map MAC Addresses to a specific interface on the switch. These usually expire every 5 minutes or so, and are updated by reading the source address of the frame entering the interface. Your switch should have a MAC/CAM Table as a layer 2 device.

ARP Table (Layer 3)

The ARP table is used to map MAC Addresses to IP addresses. If no ARP entry exists, an ARP broadcast is sent out, and the table is updated with the response. These usually expire after 2-4 hours. Each host connected to the network should maintain its own ARP Table.

Related Topic