mhigor
(usa CentOS)
Enviado em 01/07/2014 - 14:26h
Enfim, consegui da forma que da forma que eu precisava. É que o squid lê o arquivo na ordem, então primeiro eu bloqueei o que tinha que bloquear e depois liberei o resto pro arquivo gerentes. Fiz também a mudança que vc me falou e ficou assim:
http_port 3128
visible_hostname proxy
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl SSL_ports port 443 563 #https
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 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 901 # swat
acl Safe_ports port 1025-65535 # portas altas
acl purge method PURGE
acl CONNECT method CONNECT
acl redelocal src 10.10.1.0/24
acl ips_liberados src "/etc/squid/ips_liberados.txt"
acl sites_liberados url_regex -i "/etc/squid/sites_liberados.txt"
http_access allow ips_liberados
http_access allow sites_liberados
acl palavras url_regex -i "/etc/squid/palavras.txt"
acl downloads url_regex -i "/etc/squid/downloads.txt"
acl ips_gerentes src "/etc/squid/ips_gerentes.txt"
http_access deny palavras
http_access deny downloads
http_access allow ips_gerentes
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access allow redelocal
http_access deny all
Ficou perfeito!hehe.
Obrigado pela força!