Windows 上的 IP 到 IP 重定向

Windows 上的 IP 到 IP 重定向

可能重复:
IP 到 IP 重定向

我需要一种简单的方法将一个 IP 重定向到另一个 IP。

如果HOSTS我可以写

192.168.1.2  192.168.2.3

那太好了。

答案1

我用了3代理

我的config.txt

auth iponly

allow * * 83.221.199.178 80
parent 1000 tcp 192.168.1.5 8080
# redirect requests for 83.221.199.178:80 to 192.168.1.5:8080

allow *
proxy
# transparent for other requests

# default proxy port is 3128
# you can change it adding 
#proxy -p8000

我安装了 3proxy 作为服务3proxy.exe --install config.txt

相关内容