Router ICMP
failure
1x weight
measured
Router ICMP. ICMP 'destination unreachable' = routing is broken
ping says "Destination Host Unreachable" to host IP
Events
40
Pts per check
1.4
Pts missed
55.6
Teams hit
3/13
Authority mappings
Which work roles, knowledge units, and EWU courses this error pattern touches. Hover for context, click to drill in.
DCWF roles:
CE-442 Network Technician
CS-462 Control Systems Security Specialist
IT-441 Network Operations Specialist
IT-451 System Administrator
What the message means
Unlike a simple timeout, 'Destination Host Unreachable' means an intermediate router returned an explicit ICMP message saying it doesn't know how to reach your router. Your upstream routing is broken.
Why the service is down
- Router has no default gateway.
- Router's WAN interface is down.
- Upstream provider changed routing (rare in controlled competition).
- Your router's NAT/masquerade rule is missing, so return packets can't find home.
Commands in order
-
1. 1. Does the router have a default gateway?
/ip route print where dst-address=0.0.0.0/0ExpectA single default route via your WAN gateway, active (A) flagInterpret and nextMissing: `/ip route add dst-address=0.0.0.0/0 gateway=<wan-gw>` -
2. 2. Is the WAN interface up?
/interface printExpectWAN interface with R (running) flagInterpret and nextNot running: enable + check cable/upstream. -
3. 3. Can the router reach anywhere outside?
/ping 8.8.8.8 count=3Expect3 successful pingsInterpret and nextAll timeout = no internet. Your routing or gateway is broken. -
4. 4. NAT masquerade present for LAN?
/ip firewall nat print where action=masqueradeExpectOne srcnat rule with action=masquerade for your LANInterpret and nextMissing: `/ip firewall nat add chain=srcnat out-interface=<wan> action=masquerade`
Decision tree
Answer each question to route to the right fix.
Q: Can the router ping 8.8.8.8?
Yes:
NAT masquerade is missing for outbound traffic.
No:
Default gateway, WAN interface, or upstream. fix before anything else.