A network engineer is troubleshooting a DHCPv4 issue on a Cisco router configured as a DHCP server. Clients on VLAN 10 are unable to obtain IP addresses. The engineer verifies that the DHCP pool is correctly configured and that the router interface facing the clients has 'ip helper-address 192.168.1.1' pointing to the DHCP server. However, the DHCP server is on a different subnet and the router's interface is in a VRF. The DHCP DISCOVER messages are not reaching the server. What is the most likely cause?
Trap 1: The DHCP pool is missing the 'default-router' command.
Incorrect because the DHCP pool configuration is verified correct, and missing default-router would not prevent DISCOVER messages from reaching the server.
Trap 2: The router needs the 'ip dhcp relay information option' command to…
Incorrect because Option 82 is not required for basic DHCP relay; it is used for security and policy, not for basic forwarding.
Trap 3: The DHCP server is not configured with a scope for the client…
Incorrect because the issue is that DISCOVER messages never reach the server, so the server's scope configuration is irrelevant at this point.
- A
The DHCP pool is missing the 'default-router' command.
Why wrong: Incorrect because the DHCP pool configuration is verified correct, and missing default-router would not prevent DISCOVER messages from reaching the server.
- B
The router needs the 'ip dhcp relay information option' command to insert Option 82.
Why wrong: Incorrect because Option 82 is not required for basic DHCP relay; it is used for security and policy, not for basic forwarding.
- C
The 'ip helper-address' command must be configured under the interface with the VRF name using 'ip helper-address vrf <vrf-name> <server-ip>'.
Correct because when the interface is in a VRF, the helper address must specify the VRF to ensure the DHCP broadcast is forwarded into the correct routing table.
- D
The DHCP server is not configured with a scope for the client subnet.
Why wrong: Incorrect because the issue is that DISCOVER messages never reach the server, so the server's scope configuration is irrelevant at this point.