xloko
(usa Debian)
Enviado em 27/06/2009 - 17:12h
opa galera -- to tentando fazer novas ACL para o squid . mas n ta funfando nao!!
deve ser a ordem ou a logica do negocio --
quem puder me dar um dica - uma luz -- valeus !!
a situacao é assim !!
Acesso Tudo = T
Acesso medio = M (tem acesso a tudo e sites ex: orkut e bloqueado)
Acesso restrito = R (so tem acesso ao sites listado no txt e mais nada)
fiz as acl, fiz as chamadas, mas na hora de tentar acessar, ele libera para todomundo.. e agora??
quem podera me salvar!????
meu squid.conf
-----------------------------------
http_port 3128 transparent
cache_mem 128 MB
maximum_object_size 4096 KB
cache_dir ufs /var/spool/squid 1024 16 256
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
emulate_httpd_log on
error_directory /usr/share/squid/errors/Portuguese
#---------> acl Gerais
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 to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 #
acl Safe_ports port 80 #http
acl Safe_ports port 70 # gopher
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 # unregistred 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
#---------> Minhas ACL
acl network src 192.168.0.0/24
acl acesso_total_ip src "/etc/squid/regras/acesso.total.ip"
acl acesso_medio_ip src "/etc/squid/regras/acesso.medio.ip"
acl acesso_medio_bloqueado_url url_regex -i "/etc/squid/regras/acesso.medio.bloqueado.url"
acl acesso_restrito_ip src "/etc/squid/regras/acesso.restrito.ip"
acl acesso_restrito_libera_url url_regex -i "/etc/squid/regras/liberado.restrito.url"
#----------> Diretivas http_access
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
#---------> Regras das minha ACL
http_access allow acesso_total_ip
http_access allow acesso_medio_ip
http_access deny acesso_medio_bloqueado_url
http_access allow acesso_restrito_ip
http_access deny acesso_restrito_libera_url
http_access allow network
http_access deny all
icp_access deny all
-------------------------------------------------