代理设置不起作用

发布于 2024-10-25 00:13:23 字数 266 浏览 3 评论 0原文

我已经在我的一台机器“192.168.1.69”上设置了SQUID代理服务器。

我将其他机器的网关分配给“192.168.1.69”。

我已经为 Windows(开始 -> 控制面板 -> Internet 选项 -> Lan 设置)和 Linux(系统 -> 首选项 -> 网络代理)设置了代理,但尽管我必须在我的电脑上设置代理地址浏览器。

我想知道有什么方法可以自动设置代理地址,而无需在浏览器上进行任何设置。

谢谢 !

I have set SQUID proxy server on my one of the machine '192.168.1.69'.

I assigned other machines GATEWAY to '192.168.1.69'.

I have set proxy for both windows (Start -> Control Panel -> Internet Options -> Lan Settings ) and linux (System -> Preferences -> Network proxy),but though I had to set proxy address on my browser.

I want to know is there any way to automatically set proxy address without any settings on browser.

Thanks !

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

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

发布评论

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

评论(2

尤怨 2024-11-01 00:13:23

那么代理可能不是网关。如果您希望代理配置是自动的,这称为透明代理

一种方法是在网关计算机上使用 iptables:

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128

您可以在 wikipedia 或 cyberciti.biz

Well the proxy may not be the gateway. If you want the proxy config to be automatic, this is called transparent proxy.

One way to do it, is using iptables on the gateway machine:

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128

You can find more information about this on wikipedia, or cyberciti.biz

泪意 2024-11-01 00:13:23

网络代理和应用程序 (HTTP/HTTPS) 代理之间存在差异。 Squid 是后者,这就是为什么你必须在浏览器中设置代理地址。

查看此链接以设置浏览器应自动读取的代理配置文件:

http ://technet.microsoft.com/en-us/library/dd361918.aspx

There's a difference between a network proxy and an application (HTTP/HTTPS) proxy. Squid is the latter, which is why you had to set the proxy address in your browser.

Check out this link to set up a proxy config file that your browsers should read automatically:

http://technet.microsoft.com/en-us/library/dd361918.aspx

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