Squid TCP_Denied

Squid TCP_Denied

我正在尝试设置一个基本的代理服务器。我尝试过允许所有代理,但都无济于事。以下是我的 squid.conf 文件

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 CONNECT !SSL_ports
http_access allow !Safe_ports
http_access allow localhost manager
http_access allow  manager
http_access allow localhost
http_access allow all
http_port 3128

如您所见,我已允许所有请求,但似乎仍不起作用。访问日志显示 TCP_DENIED 403。

相关内容