Difficulty: Easy
Correct Answer: ARP
Explanation:
Introduction / Context:
On Ethernet LANs, devices must map Layer 3 IPv4 addresses to Layer 2 MAC addresses to deliver frames. The protocol that performs this resolution is crucial for basic connectivity and troubleshooting duplicate IPs or stale cache entries.
Given Data / Assumptions:
Concept / Approach:
Address Resolution Protocol (ARP) broadcasts a query: “Who has IP X? Tell Y.” The owner of IP X responds with its MAC address, allowing Y to populate its ARP table and send frames directly. Reverse ARP (RARP) historically mapped MAC to IP (now superseded by modern boot protocols). ICMP handles control messages, not L2 resolution.
Step-by-Step Solution:
Verification / Alternative check:
Use command line tools (arp -a, ip neigh) to inspect cache entries after communication. Packet captures clearly show ARP Request/Reply exchanges preceding unicast traffic.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming ARP works across routers (it does not); ignoring ARP cache timeouts that cause intermittent delays.
Final Answer:
ARP
Discussion & Comments