windows 系统 端口数调整 比避免出现 time_wait连接状态过多

1、查看当前 系统 开放的动态端口范围:

  netsh int ipv4 show dynamicportrange tcp

2、netsh命令修改可用端口数

  

  1. netsh int ipv4 set dynamicport tcp start=2000 num=63000
  2. netsh int ipv4 set dynamicport udp start=2000 num=63000
  3. netsh int ipv6 set dynamicport tcp start=2000 num=63000
  4. netsh int ipv6 set dynamicport udp start=2000 num=63000

3、tcp 最大可使用端口数 调整,注册表 regedit :

  

  1. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
  2. “MaxUserPort”=dword:0000fffe
  3. “TcpTimedWaitDelay”=dword:0000005   // (缩短为5秒)

  

posted @ 2020-07-31 11:53  小金儿  阅读(1014)  评论(0编辑  收藏  举报