带拦截功能的Squid internal-mgr

时间:2018-09-26 12:28:17

标签: linux nat squid

从本地主机访问鱿鱼的计数器页面(http://localhost:3129/squid-internal-mgr/info)时,它在某处被阻塞。下面是我的配置。

visible_hostname squid 
http_port 3129 intercept
acl whitelist_http dstdomain "/etc/squid/http_whitelist.txt"
http_access allow all
https_port 3130 cert=/etc/squid/ssl/squid.pem ssl-bump intercept
acl SSL_port port 443
http_access allow SSL_port
acl whitelist_https ssl::server_name "/etc/squid/https_whitelist.txt"
sslproxy_cert_error allow all
acl step1 at_step SslBump1
acl step2 at_step SslBump2
acl step3 at_step SslBump3
ssl_bump peek step1 all
ssl_bump peek step2 whitelist_https
ssl_bump splice step3 whitelist_https
http_access allow manager localhost
http_access allow localhost
http_access deny all
http_access allow manager localhost

如果我从intercept中删除http_port 3129 intercept

我在这里做错了什么?

0 个答案:

没有答案