Wotila_Carneiro
(usa Ubuntu)
Enviado em 03/03/2012 - 15:30h
Outra coisa chata. Se eu bloqueio o
www.facebook.com, e um usuário restrito tenta acessa um site que tenha alguma referência ao facebook, ele não acessa de maneira alguma e vive pedindo a senha.
Eis o squid.conf:
## PARÂMETROS DE AUTENTICÃO
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/squid_passwd
auth_param basic children 5
auth_param basic realm Digite seu Login e Senha de acesso
auth_param basic credentialsttl 2 minutes
auth_param basic casesensitive off
## CONFIGURAÇÕES BÁSICAS ##
http_port 3128
visible_hostname srvteste
cache_mem 32 MB
maximum_object_size_in_memory 64 KB
maximum_object_size 512 MB
minimum_object_size 0 KB
cache_swap_low 90
cache_swap_high 95
cache_dir ufs /var/spool/squid 2048 16 256
cache_access_log /var/log/squid/access.log
error_directory /usr/share/squid/errors/Portuguese
## ACL's DEFAULT ##
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
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
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 purge method PURGE
acl CONNECT method CONNECT
acl SSL_ports port 443 563
### INÍCIO DA CONFIGURAÇÃO DAS ACL's ###
## LIBERA TUDO PARA REDE 10.1.0.0/24 ##
acl rede_sec src 10.1.0.0/255.255.0.0
http_access allow rede_sec
### INÍCIO DA CONFIGURAÇÃO DAS ACL's ###
acl autenticados proxy_auth REQUIRED
## BLOQUEIO DE DOWNLOAD ##
acl extensoes urlpath_regex -i "/etc/squid/extensoes"
## ACL's PARA OS USUÁRIOS COM ACESSO LIVRE E RESTRITO ##
acl grupo_liberado proxy_auth "/etc/squid/usuarios_liberados"
acl grupo_limitado proxy_auth "/etc/squid/usuarios_limitados"
## ACL's PARA RESTRIÇÃO DE SITES E PALAVRAS ##
acl sites_bloqueados url_regex -i "/etc/squid/sites_bloqueados"
acl palavras_bloqueadas url_regex -i "/etc/squid/palavras_bloqueadas"
## ACL PARA OS SITES LIBERADOS ##
acl sites_liberados url_regex -i "/etc/squid/sites_liberados"
## CONTROLE DE ACESSO ##
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 rede_local
http_access deny sites_bloqueados !grupo_liberado
http_access deny extensoes !grupo_liberado
http_access deny palavras_bloqueadas !grupo_liberado
http_access allow sites_liberados
http_access allow localhost
http_access allow autenticados grupo_liberado
http_access allow autenticados grupo_limitado !sites_bloqueados !palavras_bloqueadas
## BLOQUEIA TUDO QUE NÃO SE ENCAIXA NAS REGRAS ACIMA ##
http_access deny all