Question

Difficulty: Very hardTroubleshooting IP Addressing and DHCP Services

A network administrator configures a new client subnet on VLAN 40 (10.40.0.0/2210.40.0.0/22) serviced by a central Layer 3 core switch. The central DHCP server (10.10.1.5010.10.1.50) resides on VLAN 10. Users on VLAN 40 report they cannot access internal servers or the internet. Executing `ipconfig /all` on a affected workstation returns the following output:

text
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . :
Link-local IPv4 Address . . . . . : 169.254.109.88
Subnet Mask . . . . . . . . . . . : 255.255.0.0
Default Gateway . . . . . . . . . :

The administrator verifies that the DHCP server scope for 10.40.0.0/2210.40.0.0/22 is active, enabled, and currently has over 500 available leases. Which of the following represents the most likely root cause of this failure?

  1. The Layer 3 interface for VLAN 40 lacks a DHCP relay agent (IP helper address) configuration pointing to 10.10.1.50.Answer
  2. B
    The client host is configured with an invalid default gateway address causing it to fall back to an automatic link-local assignment.
  3. C
    The central DHCP server scope for 10.40.0.0/22 has exhausted all usable host IP addresses.
  4. D
    The client has been assigned a static IP address residing on a different subnet than the default gateway.

Answer

The Layer 3 interface for VLAN 40 lacks a DHCP relay agent (IP helper address) configuration pointing to 10.10.1.50.
Because DHCP requests originate as Layer 2 broadcast traffic (destination MAC FF:FF:FF:FF:FF:FF), routers and Layer 3 switches will not forward these frames across subnets. Configuring a DHCP relay agent (IP helper address) on the interface serving VLAN 40 allows the switch to encapsulate the broadcast request as a unicast packet sent directly to the DHCP server at 10.10.1.50.

Step-by-Step Solution

1
Analyze the client command output symptoms.
The IPv4 address starts with 169.254.x.x with a 255.255.0.0 mask, identifying an Automatic Private IP Addressing (APIPA) lease assignment due to DHCP failure.
When a DHCP client fails to receive a DHCPOFFER response to its DHCPDISCOVER request, the operating system assigns an APIPA address.
2
Evaluate network boundary topology and DHCP broadcast behavior.
The client resides on VLAN 40 (10.40.0.0/22) while the DHCP server resides on VLAN 10 (10.10.1.50). Routers and Layer 3 switches drop Layer 2 broadcast frames by default.
DHCPDISCOVER messages are broadcast frames (255.255.255.255) and cannot cross the Layer 3 boundary between VLAN 40 and VLAN 10 without assistance.
3
Determine the missing network configuration requirement.
An IP helper address (DHCP relay) must be configured on the VLAN 40 switch virtual interface (SVI) or router gateway interface.
The relay agent intercepts client broadcast DHCP requests and forwards them as unicast packets to the central DHCP server at 10.10.1.50.

Key Concept

DHCP Relay Agent (IP Helper Address) placement across Layer 3 boundaries
Rate this question