A Windows workstation configured for DHCP fails to reach a server and self-assigns an address. Which address range identifies an APIPA (link-local IPv4) address that confirms the DHCP lease was not obtained?
- A192.168.0.1 through 192.168.255.254, a link-local block reserved for automatic private addressing when no DHCP server responds
- B169.254.0.1 through 169.254.255.254, a link-local block reserved for automatic private addressing when no DHCP server responds Correct
- C10.0.0.1 through 10.255.255.254, a link-local block reserved for automatic private addressing when no DHCP server responds
- D172.16.0.1 through 172.31.255.254, a link-local block reserved for automatic private addressing when no DHCP server responds
Why A is wrong: 192.168.0.0/16 is an RFC 1918 private range, tempting because it is common on SOHO LANs, but it is normally handed out by DHCP, not self-assigned.
Why B is correct: APIPA draws from 169.254.0.0/16 (RFC 3927 link-local), so a host in this range self-configured after DHCP failed.
Why C is wrong: 10.0.0.0/8 is a private RFC 1918 range often used on larger networks, but it is a routable private block, not the APIPA self-assignment range.
Why D is wrong: 172.16.0.0/12 is the third RFC 1918 private range and looks technical, but APIPA never uses it; it is administered or DHCP-assigned.