Question

Difficulty: MediumDHCP Architecture and Relay Services

A network administrator is configuring a Layer 3 router to act as a DHCP relay agent for a newly established guest wireless subnet on VLAN 75 (192.168.75.0/24192.168.75.0/24). Client devices on VLAN 75 send broadcast DHCPDISCOVER requests, but none of them acquire an IP address from the centralized DHCP server located at 10.100.1.510.100.1.5. Upon reviewing the router's configuration, the administrator discovers that the `ip helper-address 10.100.1.5` command was mistakenly applied to the outbound WAN interface facing the core network rather than the subinterface corresponding to VLAN 75. Which of the following best describes the immediate operational failure caused by this misconfiguration?

  1. The router drops or ignores the Layer 2 broadcast DHCPDISCOVER packets on the VLAN 75 subinterface because no active relay agent is listening on that ingress interface.Answer
  2. B
    The router rewrites the DHCP payload using TCP port 67 instead of UDP port 67, causing the central DHCP server to discard incoming requests.
  3. C
    The router forwards the client's broadcast request as a unicast packet, but populates the source port with UDP 68 instead of UDP 67.
  4. D
    The central DHCP server receives the relayed request but attempts to issue an IP address lease from the WAN interface's IP scope instead of the VLAN 75 scope.

Answer

The router drops or ignores the Layer 2 broadcast DHCPDISCOVER packets on the VLAN 75 subinterface because no active relay agent is listening on that ingress interface.
DHCPDISCOVER packets are broadcast messages that stop at Layer 3 boundaries. For a router to convert these broadcasts into unicast messages directed to a central DHCP server, the relay agent (`ip helper-address`) must be enabled on the specific ingress interface (VLAN 75 subinterface) receiving the broadcasts. Placing the command on an outbound WAN interface means the router will never intercept the client broadcasts originating on VLAN 75.

Step-by-Step Solution

1
Identify the ingress boundary where DHCP broadcast messages originate.
Clients on VLAN 75 generate Layer 2 broadcast DHCPDISCOVER frames sent to 255.255.255.255255.255.255.255 on their local subinterface.
Routers do not forward Layer 2 broadcast packets across subnets by default.
2
Evaluate the placement requirement of the DHCP Relay Agent (IP helper command).
The `ip helper-address` directive must be applied to the specific Layer 3 interface that receives the incoming client broadcasts.
The interface configuration enables the router to listen for UDP port 67 broadcasts on that specific segment and convert them to unicast traffic.
3
Determine the impact of placing the command on the outbound WAN interface.
Broadcasts arriving on the VLAN 75 interface are discarded without being intercepted or converted into unicast relay packets.
The outbound WAN interface receives routed traffic, not client broadcast requests originating from the local VLAN segment.

Key Concept

DHCP Relay Agent Interface Placement Requirements
Estimated Time:1m 30s
Rate this question