Windows 排除端口供自己使用
查看排除的端口
带 *
的是手动添加的项目
1 | netsh int ipv4 show excludedport tcp|udp |
添加排除端口
1 | netsh int ipv4 add excludedportrange protocol=tcp startport=4000 numberofports=1 |
参数说明
protocol
:协议,tcp
或udp
startport
:起始端口numberofports
:排除端口数量
删除排除端口
1 | netsh int ipv4 delete excludedportrange protocol=tcp startport=4000 numberofports=1 |
参数说明
protocol
:协议,tcp
或udp
startport
:起始端口numberofports
:排除端口数量
注意
startport 和 numberofports 应当一致
WSL2 配置
1 | [wsl2] |
其中 dnsTunneling
设为 false
的目的是保持 wsl
的 DNS
与 Windows
一致,可以解决在 Tun Mixed
模式下,wsl
无法使用网络的问题。