A host is trying to send a packet to a device on a remote LAN segment, but there are currently no mappings in its ARP cache. How will the device obtain a destination MAC address?
- It will send the frame and use its own MAC address as the destination.
- It will send the frame with a broadcast MAC address.
- It will send an ARP request for the MAC address of the destination device.
- It will send a request to the DNS server for the destination MAC address.
- It will send an ARP request for the MAC address of the default gateway.
Explanation & Hint:
When a host needs to send a packet to a device on a remote LAN segment and has no ARP cache entry for the destination’s MAC address, it will: Send an ARP request for the MAC address of the default gateway. Here’s why: for remote destinations (those not on the same local network), the host knows that it must send the packet through a router (commonly the default gateway). Since the host doesn’t have the MAC address for the gateway in its ARP cache, it will send an ARP request to resolve the MAC address of the default gateway. Once it has the MAC address of the default gateway, it will send the packet to the gateway for further routing to the remote destination. |