windows 使用netsh实现 ip 地址端口转发

  1. 方法 / 步骤

有时候可以利用 windows 本身设置 ip 端口转发。

因为直接利用 host 文件没有办法实现从一个 ip 地址跳转到另外一个 ip 地址。

举例:http://10.0.40.100:15672 / 是 RabbitMq 的一个访问地址。

我现在要实现 http://127.0.0.1 直接访问。

场景:有些软件中写死了访问地址,但是那个 ip 地址又无法访问,因此想实现跳转到正确的 ip 地址访问。

方法 / 步骤

1.

访问 MQ 地址


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab8492d7420.webp/sh2.png)

2.

一会要实现通过访问


http://127.0.0.1 也能直接访问该地址。


现在访问 127.0.0.1 是不通的。


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab84957cf76.webp/sh2.png)

3.

使用管理员打开 cmd 命令提示符。


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab8497244e5.webp/sh2.png)

4.

执行命令:


```shell
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 就不用解释了,就是端口。


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab84986814b.webp/sh2.png)

5.

然后现在访问 127.0.0.1 看看效果。


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab849acddfc.webp/sh2.png)

6.

是不是很方便了。


要查看所有的侦听端口


```shell
netsh interface portproxy show all
```


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab849c53828.webp/sh2.png)

7.

要删除某条规则,


执行命令:


```shell
netsh interface portproxy delete v4tov4 listenaddress=127.0.0.1 listenport=80
```


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab849ea94f2.webp/sh2.png)

8.

再次查看规则列表


```shell
netsh interface portproxy show all
```


已经删除了。


![sh2.png](https://img.blog.jiangqing.xyz/2023/07/10/64ab849fbdace.webp/sh2.png)

本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。


欢迎指出任何有错误或不够清晰的表达,可以在下面评论区评论。

×

喜欢就点赞,疼爱就打赏

//