Ping Spikes at fixed interval

DanMnaIt

Reputable
Sep 8, 2015
39
0
4,540
Hello, I noticed regular ping spikes while playing CSGO , when i checked the ping in cmd with "ping google.com -t" command i noticed that my ping spikes to 1000+ each 10 seconds. I already reinstalled network adapter driver and motherboard lan controller driver. Also i connected wirelesses adapter to different pc and it seemed to have no problems with ping. Operating system WIndows 10.
Here is my usb wifi adapter:
http://www.trendtechcn.com/Product.aspx?ProductId=323
 
Solution


Sorry for late reply but i think i managed to find the solution. My Wifi adapter was looking for new connection each 11 seconds and i had to disable auto configuration to stop it. The solution was in commecnts under this video https://www.youtube.com/watch?v=NZD8IwIU3mk . Here is the comment :

The real solution.

in your windows cmd, type in

netsh wlan show settings

and one of the last things might say

Auto configuration logic is enabled on interface "Wireless Network Connection"

if that's the case, then type in

netsh wlan set autoconfig enabled=no interface="Wireless Network Connection"

It should...

DanMnaIt

Reputable
Sep 8, 2015
39
0
4,540
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.

C:\Users\Admin>ping google.com -t

Pinging google.com [216.58.212.110] with 32 bytes of data:
Reply from 216.58.212.110: bytes=32 time=33ms TTL=55
Reply from 216.58.212.110: bytes=32 time=24ms TTL=55
Reply from 216.58.212.110: bytes=32 time=791ms TTL=55
Reply from 216.58.212.110: bytes=32 time=24ms TTL=55
Reply from 216.58.212.110: bytes=32 time=31ms TTL=55
Reply from 216.58.212.110: bytes=32 time=42ms TTL=55
Reply from 216.58.212.110: bytes=32 time=38ms TTL=55
Reply from 216.58.212.110: bytes=32 time=34ms TTL=55
Reply from 216.58.212.110: bytes=32 time=29ms TTL=55
Reply from 216.58.212.110: bytes=32 time=24ms TTL=55
Reply from 216.58.212.110: bytes=32 time=28ms TTL=55
Reply from 216.58.212.110: bytes=32 time=24ms TTL=55
Reply from 216.58.212.110: bytes=32 time=26ms TTL=55
Reply from 216.58.212.110: bytes=32 time=1383ms TTL=55
Reply from 216.58.212.110: bytes=32 time=24ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=30ms TTL=55
Reply from 216.58.212.110: bytes=32 time=37ms TTL=55
Reply from 216.58.212.110: bytes=32 time=34ms TTL=55
Reply from 216.58.212.110: bytes=32 time=41ms TTL=55
Reply from 216.58.212.110: bytes=32 time=34ms TTL=55
Reply from 216.58.212.110: bytes=32 time=35ms TTL=55
Reply from 216.58.212.110: bytes=32 time=40ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=1730ms TTL=55
Reply from 216.58.212.110: bytes=32 time=37ms TTL=55
Reply from 216.58.212.110: bytes=32 time=29ms TTL=55
Reply from 216.58.212.110: bytes=32 time=32ms TTL=55
Reply from 216.58.212.110: bytes=32 time=28ms TTL=55
Reply from 216.58.212.110: bytes=32 time=36ms TTL=55
Reply from 216.58.212.110: bytes=32 time=37ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=34ms TTL=55
Reply from 216.58.212.110: bytes=32 time=31ms TTL=55
Reply from 216.58.212.110: bytes=32 time=36ms TTL=55
Reply from 216.58.212.110: bytes=32 time=28ms TTL=55
Reply from 216.58.212.110: bytes=32 time=26ms TTL=55
Reply from 216.58.212.110: bytes=32 time=28ms TTL=55
Reply from 216.58.212.110: bytes=32 time=31ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=1627ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=27ms TTL=55
Reply from 216.58.212.110: bytes=32 time=32ms TTL=55

thats output from cmd
 

DanMnaIt

Reputable
Sep 8, 2015
39
0
4,540


Sorry for late reply but i think i managed to find the solution. My Wifi adapter was looking for new connection each 11 seconds and i had to disable auto configuration to stop it. The solution was in commecnts under this video https://www.youtube.com/watch?v=NZD8IwIU3mk . Here is the comment :

The real solution.

in your windows cmd, type in

netsh wlan show settings

and one of the last things might say

Auto configuration logic is enabled on interface "Wireless Network Connection"

if that's the case, then type in

netsh wlan set autoconfig enabled=no interface="Wireless Network Connection"

It should respond with

Auto configuration has been disabled on interface "Wireless Network Connection".

If it doesn't, then you might have mistyped your interface=" part. Check in your adapter settings, you might have Wireless Network Connection 2 or 3 etc. (the part in quotations is different for most people you must use what it says for you personally)

This will definitely stop your wireless card from searching for nearby networks and updating your signal quality when you're not asking it to- which is what is causing the spikes.

You will need to turn it back on if you disconnect or need to be able to find nearby networks again. To do so change disabled to enabled from the earlier command or copy pasta

netsh wlan set autoconfig enabled=yes interface="Wireless Network Connection"
 
Solution