Squid3 配置不起作用

Squid3 配置不起作用

我正在尝试设置一个公共 squid3 服务器,但却处处遇到障碍。

我安装了 squid 的这台服务器有一个公共 IP 地址,我想将它用作代理服务器,无论我身在何处。我试图先打开基本的开放代理服务器,然后从那里将其锁定,但我甚至无法做到这一点。

我正在使用 Ubuntu 11.04,并且已经通过 apt-get 安装了 squid3。

下面是我的配置文件,没有注释(是的,我对允许过于热心了):

acl allIP src all
acl alldstIP dst all
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
acl SSL_ports port 443
acl Safe_ports port 80          # http
acl Safe_ports port 21          # ftp
acl Safe_ports port 443         # https
acl Safe_ports port 70          # gopher
acl Safe_ports port 210         # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280         # http-mgmt
acl Safe_ports port 488         # gss-http
acl Safe_ports port 591         # filemaker
acl Safe_ports port 777         # multiling http
acl CONNECT method CONNECT
http_access allow all
http_access allow allIP
http_access allow alldstIP
http_access allow localhost
http_access allow to_localhost
http_port 3128
hierarchy_stoplist cgi-bin ?
cache_dir ufs /var/spool/squid3 100 16 256
coredump_dir /var/spool/squid3
refresh_pattern ^ftp:           1440    20%     10080
refresh_pattern ^gopher:        1440    0%      1440
refresh_pattern -i (/cgi-bin/|\?) 0     0%      0
refresh_pattern .               0       20%     4320
cache_effective_user MYUSER
cache_effective_group root

额外信息:top告诉我 squid3 正在运行,但我无法通过代理端口 telnet 到我的服务器(另一个问题说这是一个很好的调试步骤)

答案1

经过进一步的捣鼓和在另一台计算机上的测试后,似乎我的 Windows 7 安装只是不想连接到任何代理服务器,除非我在 Firefox 中设置它。此配置在另一台机器上也有效。

注意:上述配置将打开所有内容并允许其他人使用您的服务器作为代理。我以为它不起作用,所以我保留了这样的设置,结果却收到来自托管服务提供商的电子邮件,警告我存在可疑活动。

相关内容