问题
windows 命令行(管理员)
>>> netsh interface portproxy set v4tov4 listenport=2222 connectaddress=172.15.56.104 connectport=2222
>>> netsh interface portproxy show all
侦听 ipv4: 连接到 ipv4:
地址 端口 地址 端口
--------------- ---------- --------------- ----------
* 2222 172.19.56.104 2222
>>> NETSTAT.EXE -tna | findstr 2222
# 无输出
解决方法
将netsh中的set
改为add
>>> netsh interface portproxy reset
>>> netsh interface portproxy add v4tov4 listenport=2222 connectaddress=172.15.56.104 connectport=2222
>>> netsh interface portproxy show all
侦听 ipv4: 连接到 ipv4:
地址 端口 地址 端口
--------------- ---------- --------------- ----------
* 2222 172.19.56.104 2222
>>> NETSTAT.EXE -tna | findstr 2222
TCP 0.0.0.0:2222 0.0.0.0:0 LISTENING InHost
# 成功