A network administrator is troubleshooting IP address allocation for clients on subnet . Clients connected to router interface GigabitEthernet0/0 () fail to acquire dynamic IP addresses from a centralized DHCP server at . An audit of the router configuration shows that `ip helper-address 172.16.50.10` was configured on interface GigabitEthernet0/1 (the egress interface facing the DHCP server), while GigabitEthernet0/0 has no helper address configured. Which statement correctly explains why the clients on GigabitEthernet0/0 fail to receive IP leases?
- The broadcast DHCP DISCOVER messages received on GigabitEthernet0/0 are dropped by default because the `ip helper-address` command must be applied on the client-facing ingress interface to convert local broadcasts into targeted unicast packets.Answer
- BThe router relays the DHCP DISCOVER message but populates the gateway IP address (giaddr) field with GigabitEthernet0/1's IP address, causing the DHCP server to select an incorrect address pool.
- CRouters automatically flood Layer 2 DHCP broadcasts across all operational interfaces by default, but the egress interface GigabitEthernet0/1 drops the frame because Option 82 metadata is missing.
- DThe client DHCP DISCOVER broadcast reaches the server via default routing, but the server drops the request because the source IP address of the broadcast packet is unroutable.
Answer
The broadcast DHCP DISCOVER messages received on GigabitEthernet0/0 are dropped by default because the `ip helper-address` command must be applied on the client-facing ingress interface to convert local broadcasts into targeted unicast packets.
DHCP clients issue local broadcast messages to discover servers. Because routers do not forward broadcasts, the `ip helper-address` command must be applied directly to the client-facing interface (GigabitEthernet0/0). This instructs the router to intercept client broadcasts, set the gateway IP address (giaddr) field to GigabitEthernet0/0's IP address, and unicast the DHCP requests to the remote DHCP server.
Step-by-Step Solution
Key Concept
DHCP Relay Agent Interface Placement and Broadcast Handling