Question

Difficulty: MediumTroubleshooting IP Addressing and DHCP Services

A network technician is deploying IP VoIP phones on VLAN 30 (172.16.30.0/24172.16.30.0/24). The centralized DHCP server is located on VLAN 10 (172.16.10.5172.16.10.5). While devices assigned static IP addresses on VLAN 30 communicate across subnets normally, all phones set to acquire addresses automatically receive IPs in the 169.254.x.x169.254.x.x subnet and fail to register. Inspecting the Layer 3 switch shows that inter-VLAN routing is active and operational. Which of the following is the most likely cause of this problem?

  1. The interface for VLAN 30 on the Layer 3 switch is missing an IP helper address pointing to the DHCP server.Answer
  2. B
    The client phones are receiving an APIPA address because their network cards are experiencing a physical link speed mismatch with the switch.
  3. C
    The DHCP scope for VLAN 30 has exhausted its available IP address pool due to an invalid subnet host count calculation.
  4. D
    The default gateway parameter in the DHCP pool options is set to an address residing on a different IP subnet.

Answer

The interface for VLAN 30 on the Layer 3 switch is missing an IP helper address pointing to the DHCP server.
DHCP discovery messages are sent as Layer 2 and Layer 3 broadcasts, which routers and Layer 3 switches do not forward across subnets by default. Because the DHCP server is on VLAN 10 and the clients are on VLAN 30, the Layer 3 switch interface serving VLAN 30 requires an IP helper address configured to relay DHCP broadcast requests as unicast traffic to the server.

Step-by-Step Solution

1
Analyze the symptom and client IP assignment
Phones fail to receive a dynamic IP lease and auto-assign an APIPA address (169.254.x.x169.254.x.x).
APIPA assignment occurs when a host sends a DHCP DISCOVER broadcast but receives no response before timing out.
2
Evaluate the network topology and broadcast boundaries
Clients reside on VLAN 30 (172.16.30.0/24172.16.30.0/24), whereas the DHCP server resides on a separate broadcast domain, VLAN 10 (172.16.10.5172.16.10.5).
Layer 3 boundaries (routers/switches) drop broadcast traffic like DHCP DISCOVER frames by default.
3
Identify the missing network service configuration
A DHCP Relay Agent (`ip helper-address`) must be configured on the VLAN 30 interface of the Layer 3 switch.
The relay agent converts client DHCP broadcast requests into unicast packets and forwards them directly to the DHCP server on VLAN 10.

Key Concept

DHCP Relay Agent and IP Helper Address Placement across Subnets
Estimated Time:1m 30s
Rate this question