Advertisement
Guest User

Untitled

a guest
Jul 12th, 2012
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Tweaks to be ran from the cmd line
  2. [ Only for Windows with 6.x kernel (Windows Vista, 7, 2008) ]:
  3.  
  4. netsh int tcp set heuristics disabled
  5. netsh int tcp set global autotuninglevel=disabled
  6. netsh int tcp set global congestionprovider=ctcp
  7. netsh int tcp set global rss=enabled
  8. netsh int tcp set global chimney=enabled
  9. netsh int tcp set global dca=enabled
  10. netsh int tcp set global netdma=enabled
  11.  
  12. Tweaks to be placed in a registry file and then added to system registry
  13. [ For 5.x (XP, 2003) and 6.x ]:
  14.  
  15. REGEDIT4
  16. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
  17. "MaxUserPort"=dword:0000fffe
  18. "TcpTimedWaitDelay"=dword:0000001e
  19. "StrictTimeWaitSeqCheck"=dword:00000001
  20. "DefaultTTL"=dword:00000040
  21. "EnableTCPA"=dword:00000001
  22. "Tcp1323Opts"=dword:00000001
  23. "TCPMaxDataRetransmissions"=dword:00000007
  24. "SynAttackProtect"=dword:00000001
  25. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider]
  26. "LocalPriority"=dword:00000004
  27. "HostsPriority"=dword:00000005
  28. "DnsPriority"=dword:00000006
  29. "NetbtPriority"=dword:00000007
  30. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched]
  31. "NonBestEffortLimit"=dword:00000000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement