Guides & Game Help Open discussion

Call of Duty Server IP Block List (Fix hitreg and packet burst)

Started by GlitchKingWebmaster, site owner 0 replies 13 views

#1
Disable Texture Streaming & Fix Hit Reg (IP Block List + Script)

Hey everyone,

If you've been dealing with terrible hit registration, rubber-banding, or packet bursts in Black Op or Warzone, a lot of it comes down to the game's background texture streaming and connecting to sub-optimal data centers.

By completely blocking the Call of Duty CDN and specific problematic server subnets, you can force the game to run smoother, lower your ping, and make the hit reg feel like "old CoD."

Here are the two best ways to do this:

Method 1: The Windows Hosts File (Quickest for Texture Streaming)
If your main goal is simply to stop the game from downloading high-res textures in the background (which hogs bandwidth and causes micro-stutters), you can block the CDN domain directly.

  • Navigate to C:\Windows\System32\drivers\etc
  • Open the hosts file using Notepad (Make sure to open Notepad as Administrator first).
  • Add the following line to the very bottom of the file: 127.0.0.1 cod-assets.cdn.callofduty.com
  • Save the file and restart your PC.


Method 2: Block Server Subnets via PowerShell (Advanced)
If you want to go a step further and block the specific IP ranges associated with bad server routing and hit reg nerfs, you can add them to your Windows Defender Firewall.

Instead of blocking individual IPs (which can change dynamically), this script uses the /24 subnets to block the entire range so it continues to work even if the server machines swap.

How to apply:
  • Open Windows PowerShell as Administrator.
  • Paste the following code and hit Enter:


# List of CoD Subnets to block
$IPsToBlock = @(
    "34.162.150.0/24", "35.209.231.0/24", "35.211.188.0/24", "173.199.65.0/24",
    "35.212.7.0/24", "45.76.230.0/24", "64.176.214.0/24", "67.212.239.0/24",
    "35.216.117.0/24", "66.42.47.0/24", "34.176.254.0/24", "209.250.228.0/24",
    "35.213.127.0/24", "158.247.209.0/24", "91.109.240.0/24", "45.32.147.0/24",
    "78.138.107.0/24", "188.42.41.0/24", "216.238.116.0/24", "35.217.3.0/24",
    "104.207.131.0/24", "207.148.117.0/24", "139.180.164.0/24", "35.216.222.0/24",
    "34.95.192.0/24", "64.176.15.0/24", "109.200.199.0/24", "35.215.186.0/24",
    "35.240.185.0/24", "143.244.57.0/24", "23.7.212.0/24", "78.141.217.0/24",
    "52.27.21.0/24", "83.44.212.0/24", "44.239.102.0/24"
)

# Create inbound and outbound rules for each IP range
foreach ($IP in $IPsToBlock) {
    New-NetFirewallRule -DisplayName "COD Block Inbound $IP" -Direction Inbound -Action Block -RemoteAddress $IP -Profile Any -Enabled True
    New-NetFirewallRule -DisplayName "COD Block Outbound $IP" -Direction Outbound -Action Block -RemoteAddress $IP -Profile Any -Enabled True
}

Write-Host "All specified CoD server IPs have been blocked successfully."


How to Reverse the Firewall Changes
If you ever want to revert these changes (for example, if you are having trouble finding a match or connecting to friends), run this script in an Administrator PowerShell window to delete the rules:

$RulePrefix = "COD Block"

Get-NetFirewallRule | Where-Object { $_.DisplayName -like "$RulePrefix*" } | Remove-NetFirewallRule -ErrorAction SilentlyContinue

Write-Host "All specified CoD block rules have been removed."


Let me know if you guys notice an FPS boost or better ping after trying this!
Player signature
SYSTEM.HALT() // bdproductions.dev
No replies yet. Start the conversation below.

Want to join the discussion?

Sign in or create an account to post a reply.

Sign in to reply