Question

Difficulty: Very hardNetwork Host Services and Server Roles

Following an unexpected power restoration at a regional site, several client workstations in the finance department report loss of access to shared network drives and local intranet resources. Running network diagnostic commands on one affected workstation reveals an IPv4 configuration of 169.254.189.4169.254.189.4 with a subnet mask of 255.255.0.0255.255.0.0 and no assigned default gateway. Service status logs on the centralized infrastructure host reveal that the background service assigned to listen on UDP ports 67 and 68 failed to initialize during system startup. Which network host server role failed to start, and what mechanism explains the client workstations' current IPv4 address assignment?

  1. The DHCP server role failed to initialize, causing client operating systems to automatically generate an Automatic Private IP Addressing (APIPA) link-local address when no IP lease response was received.Answer
  2. B
    The DNS server role failed to initialize, causing client operating systems to default to an APIPA address because domain name resolution timed out during network adapter initialization.
  3. C
    The DHCP server role failed because inbound traffic was blocked on TCP port 53 rather than UDP port 67, forcing the workstation OS to request a link-local lease from an external default gateway.
  4. D
    The Syslog server role failed to initialize, which prevented the default gateway from broadcasting network routes and resulted in the router assigning an APIPA fallback configuration to clients.

Answer

The DHCP server role failed to initialize, causing client operating systems to self-assign an APIPA link-local address in the 169.254.0.0/16 range after failing to obtain a dynamic IP lease.
The correct response identifies that the DHCP server role uses UDP ports 67 and 68 to distribute IP configuration data to clients. When the DHCP daemon fails to start, client operating systems auto-configure a link-local APIPA address in the range 169.254.0.0/16169.254.0.0/16 to allow local subnet communication.

Step-by-Step Solution

1
Analyze the service logs
Identify that the service listening on UDP ports 67 and 68 failed to start.
UDP port 67 (server destination) and UDP port 68 (client destination) are the standard ports designated for the Dynamic Host Configuration Protocol (DHCP).
2
Analyze the workstation IP configuration
Note the IPv4 address 169.254.189.4169.254.189.4 and subnet mask 255.255.0.0255.255.0.0.
Addresses within the 169.254.0.1169.254.0.1 to 169.254.255.254169.254.255.254 block represent Automatic Private IP Addressing (APIPA), assigned by the client OS when a DHCP server does not respond to DHCPDISCOVER requests.
3
Synthesize the service role failure with the client state
Conclude that the uninitialized DHCP server host role directly caused client workstations to generate APIPA addresses.
Without a functional DHCP host service, clients cannot receive dynamic IP address leases, default gateway parameters, or DNS server addresses.

Key Concept

DHCP Server Role and APIPA Functionality
Rate this question