TCP服务器端口转发: netsh

服务器端口转发

netsh interface portproxy show all

-- 显示所有端口代理参数。

netsh interface portproxy set v4tov4 listenport=9090 connectport=9090 connectaddress=192.168.56.101

-- 将本地9090端口接收的数据转发至192.168.56.101的9080端口中。

netsh interface portproxy delete v4tov4 listenport=9090

-- 删除本地9090端口的转发配置。




你可能感兴趣的:(TCP服务器端口转发: netsh)