Difficulty: Easy
Correct Answer: Router> trace
Explanation:
Introduction / Context:
When a destination is unreachable, you must determine where along the path packets are being dropped. Tools that probe each hop and report incremental results are essential to isolate the failing segment. On Cisco devices, traceroute (often abbreviated as trace in user EXEC) performs this function by using increasing TTL values and listening for time-exceeded messages from intermediate routers.
Given Data / Assumptions:
Concept / Approach:
traceroute sends probe packets with incrementing TTL starting at 1. Each router that decrements the TTL to zero returns an ICMP time-exceeded message, revealing its identity. When a hop fails to respond or a later hop is reachable, you can infer where the issue lies. While ping only tells you if an endpoint responds, traceroute shows the entire path, which is far more diagnostic when dealing with multi-hop networks.
Step-by-Step Solution:
Verification / Alternative check:
Use show ip route on the suspect router to verify that a route exists. Confirm with ping sourced from intermediate routers to isolate asymmetric issues.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Router> trace
Discussion & Comments