Troubleshooting with MTR, Pingplotter and Ping

Gamers or customers doing remote work on servers overseas usually find this guide useful to discover where extra latency or packet loss happens.

First, find the IP you want to monitor. To find a game server IP, close your other applications, then run the game and check for open TCP connections:

Windows: Resource Monitor

macOS: lsof -Pnl +c0 +M -i4

Linux: netstat -taunp

My Traceroute (MTR) is a tool that combines the functionality of traceroute and ping. It’s useful for testing end-to-end network connectivity and locating extra latency or packet loss along the way.

How to run an MTR / Pingplotter tests:

  1. Connect a laptop directly to your fibre box (ONT / CPE) or router with an Ethernet cable.
  2. Windows and macOS users can use https://www.pingplotter.com – configure it to do at least 180 tests (1/sec). If you are familiar with the macOS/Linux terminal, run the command: mtr 8.8.8.8 If you know the IP address of the service you want to monitor, like a game server, use that IP.
  3. If you find a problem, please email us the following:
    1. Screenshot of your test
    2. Details of which fibre network you are on, and your general location

How to read MTR or Pingplotter output

When reading MTR output, you have to keep Control Plane Policing (CoPP) in mind. Tools like traceroute and mtr require a router to send packets to its CPU for processing. CPU is a limited resource and often routers have rate limits configured for this kind of traffic. If you see a router in the middle of the output list with high packet loss, it could be because of CoPP. If later in the output there is no loss – it’s best to trust the later hops with lower loss. If the last hop is not showing loss, you can be fairly sure there is no packet loss and the hops in the middle showing loss are dropping packets because of CoPP limits.

If there is packet loss at the first hop it could be caused by your wifi router or fibre box or by the fibre network (last mile or backhaul).

How to run a Ping test to detect packet loss on your line

  1. Connect a laptop directly to your fibre box (ONT / CPE) or router with an Ethernet cable.
  2. Depending on your operating system, open the terminal and use ping or fping.
  3. Start with a small packet ping to the gateway IP: ping 102.135.241.1 (or your router’s default gateway)
  4. Optionally also do a big packet ping test with the “Don’t Fragment” bit enabled (1500 byte packets):
    1. Windows:ping -f -l 1472 102.135.241.1
    2. macOS: ping -D -s 1472 102.135.241.1
    3. Linux: fping -M -b 1472 -l 102.135.242.1
    4. If you are using PPPoE, reduce the packet size by 8 bytes
  5. If you see packet loss, please email us the following:
    1. Screenshot or text output of your test
    2. Details of which fibre network you are on, and your general location

More troubleshooting

If these tests don’t show a problem, we suggest you do an 80% UDP test using iPerf next.

Add comment