magubuntu
(usa Ubuntu)
Enviado em 22/09/2011 - 10:32h
Caro, fabiomaua, faz um tempinho que abrir esse tópico, só não me lembro se eu refiz o server, mas estar funcionando tranquilo aqui, é pq eu esqueci de postar a solução encontrada e finalizar o tópico, todo caso vou postar o meu squid.conf:
http_port 3128 transparent
visible_hostname srvpxcpd
cache_mem 64 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
refresh_pattern ^ftp: 15 20% 2280
refresh_pattern ^gopher: 15 0% 2280
refresh_pattern . 15 20% 2280
#=======PARA O SQSTAT FUNCIONAR============
acl manager proto cache_object
acl webserver src 100.0.6.1/255.255.255.255
http_access allow manager webserver
http_access deny manager
#===========================================
acl redelocal src 100.0.6.0/24
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 21 80 443 563 70 210 280 488 59 777 901 1025-65535
acl purge method PURGE
acl CONNECT method CONNECT
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
redirect_program /usr/bin/squidGuard
#AUTENTICACAO
auth_param basic program /usr/bin/ncsa_auth /etc/squid/passwd
auth_param basic children 5
auth_param basic realm Digite sua senha
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
acl autenticados proxy_auth REQUIRED
# Cria outras acls com os IPs que serao aplicados a regra
acl ipsliberados src "/etc/squid/ipsliberados"
acl ipsrestritos src "/etc/squid/ipsrestritos"
http_access allow localhost
http_access allow autenticados
http_access allow redelocal
http_access deny all
delay_pools 2
# Significa que teremos dois controles de banda
# Primeiro controle de banda
delay_class 1 2
# -1/-1 significa que nao teremos limites para a delay pool 1
delay_parameters 1 -1/-1 -1/-1
delay_access 1 allow ipsliberados
# Segundo controle de banda
delay_class 2 2
# Limita a banda para +- 64 kbytes
delay_parameters 2 64000/64000 64000/64000
delay_access 2 allow ipsrestritos
#=========== AJUDA NO BLOQUEIO DO MSN =============
acl msn url_regex -i /gateway/gateway.dll
http_access deny msn
#==================================================