A network administrator is troubleshooting an issue where new Linux servers in VLAN 105 () fail to acquire dynamic IP addresses from a central DHCP server () located across a Layer 3 boundary. The router subinterface for VLAN 105 (`Gi0/0.105`) is configured with `ip helper-address 10.10.1.50`. However, packet captures show that client DHCP DISCOVER requests sent to are received on `Gi0/0.105`, but no unicast DHCP messages are ever transmitted from the router toward , and client systems eventually assign themselves APIPA addresses. Upon reviewing the router interface configuration and DHCP server status, which TWO conditions would explain this behavior?
- An inbound Access Control List (ACL) applied to interface `Gi0/0.105` explicitly blocks incoming UDP port 67 traffic, preventing the router relay process from intercepting client requests.Cevap
- The central DHCP server lacks an active scope matching the gateway IP address (`giaddr`) of inserted by the relay agent.Cevap
- CThe `ip helper-address` directive was misconfigured because it must be placed on the central DHCP server's local switch port rather than the client gateway router interface.
- DClients fall back to APIPA addresses () primarily because the subinterface `Gi0/0.105` IP address resides on a different IP subnet than the central DHCP server.
Cevap
The two conditions explaining the lease failure are that an inbound ACL on the subinterface is blocking incoming UDP port 67 broadcast traffic, and that the central DHCP server lacks an active scope corresponding to the relay agent's gateway IP address (giaddr).
DHCP relay agents must receive client broadcast traffic on UDP port 67 to process and encapsulate requests into unicast packets directed to the DHCP server. If an inbound Access Control List blocks UDP port 67 on the client subinterface, relaying fails immediately. Additionally, when relayed packets arrive at the DHCP server, the server inspects the `giaddr` field (set to the router's subinterface IP) to select an appropriate pool; if no matching scope exists for that subnet on the server, no lease offer can be generated.
Adım Adım Çözüm
Anahtar Kavram
DHCP Relay Operation, ACL Traffic Filtering, and GIADDR Scope Selection