Question

Difficulty: Very hardNetwork Hardware Devices

A network technician is setting up network connectivity for a newly created department on a separate floor. All workstations are connected to a newly installed Layer 2 switch, which connects directly to a port on the building's core router serving as the default gateway. However, none of the departmental workstations can access network resources or the internet. Running `ipconfig` on the workstations reveals IP addresses in the 169.254.0.0/16169.254.0.0/16 network range. The enterprise DHCP server is located on a different IP subnet across the network core. Which device configuration or feature must be enabled on the router interface to resolve this issue?

  1. A DHCP relay agent (IP helper) enabled on the gateway router interfaceAnswer
  2. B
    An unmanaged Layer 2 switch feature to forward broadcast frames across routed subnet boundaries
  3. C
    A local DNS server installation on the switch port to assign dynamic IP addresses using domain names
  4. D
    Replacement of all workstation network interface cards to address physical APIPA detection faults

Answer

Enabling a DHCP relay agent (also known as an IP helper address) on the gateway router interface allows Layer 2 DHCP broadcast requests from the local subnet to be forwarded as unicast traffic across subnet boundaries to the centralized DHCP server.
Workstations receiving 169.254.X.X169.254.X.X addresses are utilizing Automatic Private IP Addressing (APIPA), indicating that client NICs are functional but cannot reach a DHCP server. Because DHCP discovery frames are Layer 2 broadcasts, the router separating the subnets drops these frames by default. Enabling a DHCP relay agent (IP helper) on the router's incoming interface allows the router to accept these broadcasts and forward them as unicast packets across subnets to the central DHCP server.

Step-by-Step Solution

1
Analyze the reported symptoms and IP configuration
Workstations receive IP addresses in the 169.254.0.0/16 range, confirming Automatic Private IP Addressing (APIPA).
APIPA occurs when a DHCP client sends broadcast requests for an IP address lease but receives no response from a DHCP server.
2
Identify the network boundary limitation affecting DHCP traffic
DHCP discovery messages are sent as Layer 2 broadcasts, which are dropped by the Layer 3 router separating the local switch from the remote DHCP server.
Routers do not forward Layer 2 broadcast packets between subnets by default.
3
Determine the required hardware device function to cross subnet boundaries
Configure a DHCP relay agent (IP helper) on the router interface facing the local subnet.
The relay agent intercepts local DHCP broadcast requests, encapsulates them as unicast packets, and forwards them directly to the remote DHCP server IP address.

Key Concept

DHCP Relay / IP Helper Agent on Layer 3 Devices
Estimated Time:2m 0s
Rate this question