How to Lower Ping for Online Gaming — 12 Network Tweaks
High ping means your actions reach the server late and enemy positions are outdated. In competitive games, every millisecond of latency is a disadvantage. While you can't change the physical distance to the server, you can optimize how Windows handles network packets.
Here are 12 network tweaks that reduce ping and improve connection stability for online gaming.
1. Disable Nagle's Algorithm
Impact: HIGH. Nagle's algorithm batches small network packets together before sending them to reduce bandwidth usage. For gaming, this means your inputs wait to be grouped with other data instead of being sent immediately — adding latency to every action.
Find your network adapter's interface GUID in the registry, then add these values:
Registry: HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{your-adapter-GUID}
Set TcpAckFrequency = 1
Set TCPNoDelay = 1
Get-NetAdapter | Select-Object Name, InterfaceGuid. Use the GUID of your active network adapter.2. Change DNS to Cloudflare or Google
Impact: MEDIUM. Your ISP's DNS servers are often slow and congested. Switching to Cloudflare (1.1.1.1) or Google (8.8.8.8) can speed up server resolution and reduce initial connection times.
Settings → Network & Internet → Your connection → DNS server assignment → Manual:
- Cloudflare: Primary 1.1.1.1 / Secondary 1.0.0.1
- Google: Primary 8.8.8.8 / Secondary 8.8.4.4
3. Flush DNS Cache
Impact: LOW. Stale DNS entries can cause connection issues. Flushing the cache forces Windows to re-resolve all addresses with fresh data.
ipconfig /flushdns
4. Disable Auto-Tuning
Impact: MEDIUM. Windows' TCP auto-tuning dynamically adjusts the receive window size. While this optimizes large downloads, it can add overhead and inconsistency to the small, frequent packets games use.
netsh int tcp set global autotuninglevel=disabled
netsh int tcp set global autotuninglevel=normal5. Use Wired Ethernet Over WiFi
Impact: HIGH. WiFi adds 2-10ms of latency compared to Ethernet, and it fluctuates. WiFi also suffers from packet loss due to interference from other devices, walls, and neighboring networks. For competitive gaming, a wired connection is non-negotiable.
If your router is far away, use a powerline adapter or MoCA adapter instead of WiFi. Both provide more stable connections than wireless.
6. Close Bandwidth-Hungry Applications
Impact: HIGH. Streaming video, cloud sync (OneDrive, Google Drive), Windows Update, and torrent clients can saturate your connection, causing ping spikes during gaming.
Close or pause: Chrome/Firefox streaming tabs, OneDrive/Dropbox/Google Drive sync, Steam/Epic/Xbox game downloads, torrent clients, Windows Update (Settings → Windows Update → Pause).
Optimize your network for gaming in one click
DRX Optimizer applies all network tweaks automatically — Nagle, DNS, auto-tuning, and more.
Download Free7. Enable QoS (Quality of Service)
Impact: MEDIUM. If other people on your network are streaming or downloading, QoS on your router can prioritize gaming traffic so your packets get sent first.
Log into your router (usually 192.168.1.1 or 192.168.0.1) → Find QoS settings → Enable → Set your gaming PC as highest priority or add your game's port numbers.
8. Optimize NIC Settings
Impact: MEDIUM. Your network adapter has hidden settings that affect latency:
Device Manager → Network adapters → Right-click your adapter → Properties → Advanced tab. Set:
- Speed & Duplex: Set to your connection's actual speed (e.g., "1.0 Gbps Full Duplex") instead of Auto Negotiation
- Energy Efficient Ethernet: Disabled
- Flow Control: Disabled
- Interrupt Moderation: Disabled (see tweak #12)
9. Optimize MTU
Impact: LOW. MTU (Maximum Transmission Unit) is the largest packet size your connection can send without fragmentation. An incorrect MTU causes packets to be split and reassembled, adding latency.
# Find optimal MTU (start at 1500, decrease until no fragmentation) ping google.com -f -l 1472 # If this fails, try lower values: 1464, 1456, 1448... # Once you find the largest value that works, add 28 for MTU # Set optimal MTU netsh interface ipv4 set subinterface "Ethernet" mtu=1500 store=persistent
10. Select Closest Game Server
Impact: HIGH. No amount of Windows tweaks can overcome physics. Data takes ~1ms per 100km of fiber. Always select the server closest to your physical location.
Most games show ping per server in the server browser or matchmaking settings. In Valorant, go to Settings → Video → Stats → Enable "Network Round Trip Time". In CS2, open console and type status to see your ping.
11. Disable Large Send Offload
Impact: LOW-MEDIUM. Large Send Offload (LSO) lets the NIC handle segmenting large packets. While this reduces CPU usage, it can add latency for the small packets games use.
Device Manager → Network adapters → Your adapter → Properties → Advanced → Set "Large Send Offload V2 (IPv4)" and "Large Send Offload V2 (IPv6)" to Disabled.
12. Disable Interrupt Moderation
Impact: MEDIUM. Interrupt moderation batches network interrupts to reduce CPU usage. Disabling it makes the CPU process each packet immediately, reducing network latency at the cost of slightly higher CPU usage.
Device Manager → Network adapters → Your adapter → Properties → Advanced → Set "Interrupt Moderation" to Disabled.
All 12 network tweaks. One click. Free.
DRX Optimizer applies every network optimization automatically with built-in backup. Free version includes 8 essential tweaks. Pro unlocks all 59+.
Download DRX Optimizer — Free