BestVPNRadar Intelligence Team
Written byBestVPNRadar Intelligence Team
Last VerifiedMarch 2026
Read Time5
πŸ“
Word Count1261
LevelBeginner Friendly
#Network Diagnostics#Latency#BGP#ISP#Gaming#DevOps

Quick answer: Yes β€” our free online traceroute maps every router between our servers and your target, shows round-trip latency per hop, and helps you pinpoint exactly where slow connections and packet loss are occurring. No command line, no installation. But there is a critical misread that causes people to blame the wrong hop for their latency β€” and most traceroute guides don't explain it clearly. Read the ICMP deprioritization section below before drawing any conclusions from your results.

Traceroute Quick Reference β€” 2026

FeatureDetails
How it worksTTL-based hop discovery using ICMP / TCP probes
Probes per hop3 (standard β€” shows min, typical, max variance)
Timeout per hop3 seconds before marking as * (no response)
Maximum hops30 (configurable β€” increase for intercontinental targets)
Protocol optionsICMP (default) Β· TCP port 80 Β· TCP port 443
DNS resolutionβœ… Reverse DNS on every hop IP (when available)
Requires installation?No β€” runs entirely in browser

What Is Traceroute and How Does It Work?

Every packet you send across the internet doesn't travel in a straight line. It hops from router to router β€” across your ISP, backbone networks, submarine cables, and data centers β€” until it reaches its destination. Each of those intermediate routers is a "hop." Traceroute makes every one of those hops visible.

The TTL Trick β€” How Traceroute Discovers Every Hop

Probe 1 (TTL=1): We send a packet with TTL=1. The first router decrements it to 0, discards it, and sends back an ICMP "Time Exceeded" message β€” revealing its IP and RTT. That's Hop 1.

Probe 2 (TTL=2): The next packet has TTL=2. It passes the first router and is discarded by the second router. That's Hop 2.

This continues until either the destination responds or the maximum hop limit is reached.

Reading a Traceroute β€” Every Column Explained

ColumnWhat It ShowsWhat To Look For
Hop numberSequential position in pathMost routes: 10–20 hops. More than 25 suggests routing inefficiency.
IP/HostnameReverse DNS nameReveals carriers (NTT, Level3) and cities (LHR, LGA).
RTT 1/2/3 (ms)Latency per probeVariance signals jitter.
* * *No ICMP responseUsually a firewall block, not necessarily packet loss.

The 5 Traceroute Patterns & What They Mean

Pattern 1: Smooth Progressive Increase (Healthy)

Latency increases gradually (e.g., 2ms β†’ 15ms β†’ 85ms transatlantic). This is physical distance at work β€” a clean, healthy route.

Pattern 2: The ICMP Deprioritization Trap

Hops 1–7 show 20ms. Hop 8 shows 220ms. Hops 9–15 are back to 22ms. Hop 8 is NOT your bottleneck. This is just the router processing ICMP at low priority. Only worry if high latency persists across ALL subsequent hops.

Pattern 3: Sustained High Latency (Real Problem)

Hops 1–6 show 15ms. Hop 7 shows 180ms and ALL later hops stay at 180ms+. This is a genuine bottleneck at hop 7.

Pattern 4: Trace Stops Mid-Path (* * *)

A firewall is blocking all ICMP at that point. The destination host itself might be down or blocking external probes.

Pattern 5: Asymmetric Routing

BGP optimizes for cost, not distance. The path back to you might be entirely different from the path to the target. This is normal.

RTT Benchmarks β€” Is Your Latency Normal?

Route typeExpected RTTInvestigate if aboveNotes
LAN / Home Router<2ms10msHop 1 issue = Local Wi-Fi/cable problem.
US ↔ Western Europe70–100ms180msSpeed of light set ~60ms minimum.
US ↔ East Asia140–200ms320msPhysical RTT minimum ~120ms.
Starlink (LEO Sat)25–60ms100msSuitable for competitive gaming.
Traditional Sat (GEO)600–800ms1000ms+36,000km orbit adds ~240ms each way.
The 60ms Rule for Gaming

For competitive gaming (FPS, MOBAs), latency above 60ms creates noticeable input lag. If your traceroute shows latency accumulating at your ISP's backbone (hops 2–4), the issue is local. If it spikes near the final hops, the issue is at the game server's data center.

Traceroute vs Ping vs MTR β€” Which to Use?

ToolMissing IntelBest For...
PingPath visibilityChecking if host is alive.
TracerouteSustained jitterLocating WHERE latency builds up.
MTRSnapshotsIntermittent packet loss analysis.

Online Traceroute vs. Your Local Terminal

Running a trace from your browser provides an external vantage point essential for modern diagnostic workflows:

Diagnose Server Issues

If users report lag but your local machine is fine, our tool reveals the route from the raw internet to your server, bypassing your ISP's specific peering.

Test Without VPN Interference

Corporate VPNs hide true network paths. Our tool traces the raw internet path regardless of your local encryption settings.

How to Read Hop Hostnames β€” Decoding Carriers

Reverse DNS names on carrier routers contain hidden geography. Decode them using IATA airport codes:

Hostname SegmentMeaning
lga / lhr / fraPhysical Location: New York / London / Frankfurt.
ntt.net / gtt.netCarrier Backbone: NTT or GTT Communications.
192.168.x / 10.xPrivate IP: This hop is inside an internal network.

Traceroute and BGP β€” The Business of Routing

Cold-Potato vs Hot-Potato Routing

The internet runs on BGP (Border Gateway Protocol), which optimizes for business policy and costβ€”not physical distance. A packet from NYC to Boston might route through Chicago because those ISPs have a better peering agreement there.

This "cold-potato routing" is why internet latency is often higher than the speed of light through fiber would theoretically allow.

Asymmetric Routing: It's important to remember that the path back to you is often entirely different from the path to the target. BGP is directional; an ISP might have a fast path to London but a cheaper (slower) path back through Paris. Traceroute measures the *total* round trip, but can't distinguish which direction caused the latency spike.

Pros and Cons of Online Traceroute

What This Tool Does Well

  • No installation β€” works in any browser
  • External perspective β€” bypasses local VPN routing
  • TCP mode available to bypass ICMP firewalls
  • Real-time hop-by-hop resolution support

Limitations to Know

  • Single source location origin (from our servers)
  • No continuous packet loss stats (use MTR for that)
  • Can't trace private/local home networks
  • ICMP can be blocked at final destination

Network Performance Glossary

RTT (Round Trip Time)
Total time in ms for a probe to travel to a hop and return.
Jitter
Variance in RTT between multiple probes. High jitter kills gaming/VoIP.
TTL (Time To Live)
A counter that prevents packets from looping infinitely.
Asymmetric Routing
When the return path is different than the forward path.

Frequently Asked Questions

Was this article helpful?

Sources & References

  1. RFC 792 (ICMP) β€” datatracker.ietf.org
  2. RFC 791 (IP TTL) β€” datatracker.ietf.org
  3. MTR Guide β€” www.bitwizard.nl
  4. NIST Network Monitoring Principles β€” www.nist.gov
BestVPNRadar Intelligence Team
Editorial Team

BestVPNRadar Intelligence Team

Network security professionals with 10+ years in infrastructure and penetration testing. We provide transparent, technical insights through verified tools and research.

πŸ”„ Last verified March 2026