A network engineer is configuring DHCP relay services on a Layer 3 core switch to service a newly created IoT VLAN (VLAN 50, ). Centralized DHCP services reside on server . The engineer creates Switch Virtual Interface (SVI) `Vlan50` with IP address , but accidentally applies the `ip helper-address 192.168.10.10` command to the Layer 3 point-to-point uplink interface () connected to the datacenter router instead of SVI `Vlan50`. Packet captures confirm client devices on VLAN 50 are sending DHCP DISCOVER broadcast frames, yet no relay traffic reaches the DHCP server. Which of the following best explains why the DHCP relay process fails?
- The DHCP relay agent intercepts broadcasts only on the interface where the helper address is configured; applying it to the uplink interface prevents the switch from intercepting and relaying DISCOVER broadcasts arriving on the client SVI.Answer
- BThe relay agent successfully forwards DISCOVER packets out the uplink interface using the uplink IP address () as the gateway IP (), causing the server to fail because no scope exists for the uplink subnet.
- CThe relay helper service encapsulates DISCOVER traffic into TCP port 67 packets by default, causing the central firewall to drop the traffic because DHCP servers respond exclusively to UDP port 68.
- DThe relay agent converts incoming unicast DISCOVER requests into Layer 2 broadcasts across VLAN 50, but because the uplink interface resides in a separate broadcast domain, Layer 3 switches drop the frames.
Answer
The DHCP relay agent intercepts broadcasts only on the interface where the helper address is configured; applying it to the uplink interface prevents the switch from intercepting and relaying DISCOVER broadcasts arriving on the client SVI.
A DHCP relay agent (such as Cisco's `ip helper-address`) must be enabled on the specific ingress interface (e.g., SVI or subinterface) facing the client subnets. When client devices broadcast DHCP DISCOVER messages (`255.255.255.255`), the Layer 3 device inspects the ingress interface. If no relay service is enabled on that specific interface, the broadcast is dropped at the Layer 3 boundary. Applying the helper command to an outbound uplink interface only instructs the switch to listen for broadcasts arriving on that uplink, failing to capture or relay any client traffic originating on VLAN 50.
Step-by-Step Solution
Key Concept
DHCP Relay Agent Interface Placement and Broadcast Handling
Estimated Time:2m 0s