Networking & IoT · Interview question

A device shows an IP of 169.254.x.x. What does that tell you?

A strong answer

That it failed to get an address from DHCP and fell back to an IPv4 link-local address (the 169.254.0.0/16 range, auto-assigned by APIPA-style behavior). It means the device tried to obtain an IP, mask, and gateway from a DHCP server, got no answer within the timeout, and self-assigned a link-local address that only works for communicating with other link-local devices on the same physical segment, it has no gateway, so it can't reach the internet or even the rest of a properly-addressed LAN. So seeing 169.254.x.x is a strong signal to check the DHCP path: is there a DHCP server reachable, is the cable/link actually up, is the device on the right VLAN, has the DHCP pool been exhausted, or is a firewall blocking the broadcast DHCP exchange. The fix is to restore DHCP service or assign a static address. The key interpretation is "this device does not have a usable routed address", it's a failure indicator, not a normal operating state, even though the interface superficially "has an IP."

What a weak answer sounds like

You know the answer. Do you know what gets you dinged?

Pro breaks down the answer most candidates actually give to this question — and the specific reason an interviewer marks it down. It’s the difference between sounding correct and sounding senior, on all 472 questions.

From the lesson

IP Addressing

How a packet finds a device: IPv4/IPv6 addresses split into network and host by the subnet mask, the same-subnet-vs-gateway decision, plus DHCP, NAT, and why IoT devices dial out.

More IP Addressing questions

Browse all 472 interview questions
A device shows an IP of 169.254.x.x. What does that tell you? | EmbeddedPrep.io