r how packets travel across the internet using the traceroute
command. Learn the TTL mechanism, ICMP responses, and how to troubleshoot network issues like a pro.
What is traceroute
?
traceroute
is a powerful command-line utility used to track the route packets take from your computer to a destination IP or domain. It helps visualize how many hops (routers) your packets pass through and where delays, packet drops, or firewall blocks might occur.
You can think of traceroute
as a GPS system for your network packets.
How Traceroute Works Under the Hood
When you send data over the internet, it travels through many routers. traceroute
leverages a clever trick using the TTL (Time To Live) field in IP packets to identify each hop.
Here’s how:
- TTL Begins at 1: The first packet is sent with
TTL = 1
. The first router decrements TTL to 0 and discards the packet, returning an ICMP “Time Exceeded” message. - Increment TTL: The next packet has
TTL = 2
, reaching the second router before it expires. - Repeat: This continues until the packet finally reaches the destination or hits the TTL limit (typically 30).
With each ICMP reply, traceroute
records the router’s IP address and the round-trip time (RTT).

In the output:
- Each line = a hop
- Shows IP or hostname of the router
- Shows 3 RTTs (packets sent 3 times per hop)
This helps determine where latency or packet loss occurs
Behind the Scenes: ICMP and UDP Packets
Depending on the OS:
- Linux: Sends UDP packets to high-numbered ports (above 33434)
- Windows: Uses ICMP Echo Request
Routers return ICMP Time Exceeded
responses. When the destination is reached, it may respond with:
ICMP Port Unreachable
(Linux default behavior)- Or no response if ICMP is blocked

Real-World Use Case: Network Troubleshooting
Imagine you’re trying to reach a server and ping
works, but web pages are still slow or not loading. Use traceroute
to discover where the problem lies.
Look for:
- High latency in a hop (e.g., 300ms+)
- Repeated timeouts (denoted by
* * *
) - Routing loops (same IP appears in multiple hops)

Limitations of Traceroute
Problem | Symptom | Fix/Workaround |
---|---|---|
ICMP or UDP blocked | * * * timeout | Try traceroute -T for TCP |
DNS resolution slows results | Long waits | Use traceroute -n |
Asymmetrical routing | False latency | Combine with mtr , ping , etc. |
Power Traceroute Options
traceroute -n
: Skip DNS lookups for speedtraceroute -I
: Use ICMP instead of UDP (more firewall friendly)traceroute -T
: Use TCP packets (good for HTTP/HTTPS destinations)traceroute -p <port>
: Use a custom port number
Key Takeaways
traceroute
maps out how your data travels across routers.- Uses TTL and ICMP to expose each hop in the path.
- Helps in identifying slow, failing, or firewalled network segments.
- Ideal tool for DevOps, SysAdmins, and Network Engineers.
Conclusion
Understanding how traceroute
works is crucial for anyone managing networks or services. It gives you a peek into the journey of your data — hop by hop — and equips you to diagnose issues faster and smarter.
Try running traceroute
today and witness the internet unfold, one hop at a time.
Leave a Reply