Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
我同意,这应该发生服务器故障。但我认为您可以使用简单的 iptables 规则将传入流量从给定端口重定向到您朋友的网络代理来做到这一点。
iptables -t nat -A PREROUTING -j DNAT -i eth0 -p TCP --dport 3128 --to-destination a.b.c.d
其中 abcd 是您朋友的 IP。
abcd
您还可以对朋友主机上的不同侦听端口使用 abcd:port 语法。
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.
Where a.b.c.d is your friend's IP.
a.b.c.d
You can also use a.b.c.d:port syntax for a different listening port at your friend's host.
a.b.c.d:port
Edit: I have tested it on my own network using masquerading and ip forwarding.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
我同意,这应该发生服务器故障。但我认为您可以使用简单的 iptables 规则将传入流量从给定端口重定向到您朋友的网络代理来做到这一点。
其中
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.
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.