https://jingyan.baidu.com/article/37bce2be42719c1002f3a29b.html
有时候可以利用windows本身设置ip端口转发。
因为直接利用host文件没有办法实现从一个ip地址跳转到另外一个ip地址。
举例:http://10.0.40.100:15672/是RabbitMq的一个访问地址。
我现在要实现http://127.0.0.1直接访问。
场景:有些软件中写死了访问地址,但是那个ip地址又无法访问,因此想实现跳转到正确的ip地址访问。
方法/步骤
-
访问MQ地址
-
一会要实现通过访问
http://127.0.0.1也能直接访问该地址。
现在访问127.0.0.1是不通的。
-
使用管理员打开cmd命令提示符。
-
执行命令:
netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=80 connectaddress=10.0.40.100 connectport=80
#listenaddress 要监听的ip地址,也就是最终要访问的ip地址。
#connectadress 要链接的服务器地址,也就是RealServer
#port就不用解释了,就是端口。
-
然后现在访问127.0.0.1看看效果。
-
是不是很方便了。
要查看所有的侦听端口
#netsh interface portproxy show all
-
要删除某条规则,
执行命令:
#netsh interface portproxy delete v4tov4 listenaddress=127.0.0.1 listenport=80
-
再次查看规则列表
#netsh interface portproxy show all
已经删除了。