3
1
In my company, all http and https must connect to a proxy server, which means we must set proxy in our web browser.
Our department has an internal network (192.168.0.xxx
). I use a Linux server as router, use iptables to setup NAT.
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
Now, the Linux router works well. We can set proxy to access Internet.
My question is: I want to use the Linux router to connect the proxy server, then the computers in our internal network (192.168.0.xxx
) could visit Internet without setting proxy.
Is this possible?
There is already a squid server on my router now. – siyuan – 2013-02-02T07:10:11.487
Thank you! There is already a squid server on my router now. Suppose my company's proxy is proxy.com:85, we setup a squid 192.168.0.5:3128. Now, we can access Internet by setting proxy as 192.168.0.5:3128 or proxy.com:85. What I want is to access Internet without setting proxy, because some program can't set proxy, such as some online update. – siyuan – 2013-02-02T07:18:51.063