MTR Output Interpretation for Binance | Generated by AI

Home 2026.04

Question: How do I interpret this MTR output from my Mac to api.binance.com?

Answer:

MTR Output Analysis: 192.168.1.46 → api.binance.com (103.200.31.172)

Column Reference

Column Meaning
Loss% % of ICMP packets with no reply received
Snt Total packets sent (~46)
Last RTT of the most recent packet (ms)
Avg Average RTT of all packets (ms)
Best Best (lowest) RTT seen (ms)
Wrst Worst (highest) RTT seen (ms)
StDev Standard deviation — higher = more jitter/inconsistency

Hop-by-Hop Breakdown

Hop 1 — 192.168.1.1 (Your Home Router)

Hop 2 — 100.69.0.1 (Your ISP’s First Gateway)

Hop 3 — (waiting for reply) ⚠️

Hop 4 — 14.147.135.205 — Loss: 64.4% 🚨

Hop 5 — 14.147.135.206 — Loss: 59.1% 🚨

Hop 6 — 14.147.5.141 — Loss: 22.2% ⚠️

Hop 7 — (waiting for reply)


Overall Diagnosis

The critical question: Is the loss on hops 4–6 real?

Packet loss or a high RTT that continues on all subsequent hops indicates an actual issue. However, some network providers configure routers not to generate ICMP Time Exceeded replies, and a router might also limit how many ICMP replies it emits — behaviors that can appear as packet loss or high latency without being real.

The pattern here — high loss at hops 4–5 (64%, 59%), dropping to 22% at hop 6 — suggests two possible causes:

  1. ICMP Rate Limiting (most likely): The 14.147.x.x ISP routers are deprioritizing ICMP probes. A single spike doesn’t conclude any problem as long as subsequent hops show 0.0%. Most of the time, minimal packet loss is a result of ISP rate-limiting.

  2. Actual congestion or routing issue: The fact that loss persists across multiple sequential hops (4, 5, 6) with no zero-loss hop in between makes this harder to dismiss as pure rate limiting.


What to Do Next

  1. Run more cycles to confirm:
    sudo mtr api.binance.com --report -c 200
    
  2. Try TCP mode on port 443 (bypasses ICMP rate limiting entirely):
    sudo mtr api.binance.com -T -P 443 --report -c 100
    
  3. Check if the final destination (hop ending at 103.200.31.172) shows loss. If you don’t see any loss or concerning RTT on the final hop, you have a healthy network path despite intermittent hop statistics. Your output was cut off before reaching the final hop, so the verdict is still inconclusive.

  4. Run a reverse MTR from Binance’s side or use a looking glass tool to test the return path, since the path a packet takes from A to B is often not the same as B to A, meaning packet loss at a given hop is not necessarily caused by that hop.

References:


Back Donate