代理设置问题

发布于 2024-11-09 01:54:08 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

折戟 2024-11-16 01:54:08

我同意,这应该发生服务器故障。但我认为您可以使用简单的 iptables 规则将传入流量从给定端口重定向到您朋友的网络代理来做到这一点。

iptables -t nat -A PREROUTING -j DNAT -i eth0 -p TCP --dport 3128 --to-destination a.b.c.d

其中 abcd 是您朋友的 IP。

您还可以对朋友主机上的不同侦听端口使用 abcd:port 语法。

编辑:我已经使用伪装和 IP 转发在自己的网络上对其进行了测试。

I agree, this should go to serverfault. But I think you can manage to do this using a simple iptables rule to redirect incoming traffic from a given port, to you friends web proxy.

iptables -t nat -A PREROUTING -j DNAT -i eth0 -p TCP --dport 3128 --to-destination a.b.c.d

Where a.b.c.d is your friend's IP.

You can also use a.b.c.d:port syntax for a different listening port at your friend's host.

Edit: I have tested it on my own network using masquerading and ip forwarding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文