想请问一下squid的验证顺序

发布于 2022-07-22 14:02:10 字数 1514 浏览 8 评论 3

是先允许allow的,最后deny all ,是禁止所有非allow的吧
cl SSL_ports port 443 563
acl Safe_ports port 80                # http
acl Safe_ports port 21                # ftp
acl Safe_ports port 443 563        # https, snews
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

# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager
# Deny requests to unknown ports
http_access deny !Safe_ports

# Deny CONNECT to other than SSL ports
http_access deny CONNECT SSL_ports

http_access allow somebody
...................................
..
.
http_access deny all

既然http_access deny !Safe_ports,最后又deny all,是不是所有的端口都被禁止了?

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

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

发布评论

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

评论(3

无语# 2022-07-23 22:26:38

你中间肯定有allow的

苏辞 2022-07-23 22:20:38

http_access deny all是禁止许可之外的所有主机访问代理服务器

http_access deny !Safe_ports是禁止所有主机(包括具有许可访问代理服务器的主机)访问代理服务器Safe_ports外所有端口

像你 2022-07-23 08:33:05

??

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