Windows 的端口代理配置(端口映射)
在调试本地程序,或者需要把 WSL 的服务暴露出去,使用端口映射会更加方便。 Windows 的端口映射命令格式如下: ❯ netsh interface portproxy The following commands are available: Commands in this context: show - Displays information. add - Adds a configuration entry to a table. delete - Deletes a configuration entry from a table. dump - Displays a configuration script. reset - Resets portproxy configuration state. set - Sets configuration information. portproxy:端口代理,它是在强大的网络管理工具 netsh 中,命令本身比较简单,主要就是端口代理的增删改查。 01 查看映射(show) show 可以查看已存在的端口转发规则,没有给定参数会输出以下帮助信息: ❯ netsh interface portproxy show The following commands are available: Commands in this context: show all - Shows all port proxy parameters....