Windows – Very high ping and packet loss on one computer only

windows-serverwireless-networking

I have a specific desktop which seems to have consistently high packet loss and ping regardless of what connection it is using. I'm connecting via wifi and this computer usually has a ping to my router of around 800ms and packet loss of around 20%. I've tried different wireless adapters, and even using the usb tethering on my phone, and they all have the same result.

The computer is running Windows Server 2008 R2 and Arch Linux, and the problem only exists on Windows for usb tethering. I can't test with the wifi adapters on Linux, as there are no drivers for them.

It is also not a locational or hardware problem. My laptop can connect without issue from the same position, either by using its own wireless adapter, a usb adapter which has issues in the desktop but is fine in the laptop, or usb tethering through my phone.

I've tried disabling 11n on my router so I know it's connecting by 11g, and it had the problem, and I tried setting it to 11n and it had the problem.

I've no idea on how to diagnose this. I can't find anything in my network settings which look likely to be the cause.

Best Answer

Many things could be checked:

  • lots of network usage from that host? (use: wireshark )

  • lots of CPU usage resulting in a drop of network packets? (use Sysinternals "Process Monitor")

  • MTU settings: you could have a sub-optimal setting. I'd just do bigger and bigger ping with the "don't fragment" bit set, and see where it starts to break, and figure out then the best MTU setting (which is not the same number as the ping size, because of the ip and tcp headers overhead. Read about it for details). But beware: don't change more than 1 thing, and heavily test each time. You could completely mess up your connection!

  • routes: you may have conflicting things, such as several default gateways, etc, possibly generating unwanted traffic (such as useless duplicated packets).

Related Question