macarthy
(usa Outra)
Enviado em 16/03/2012 - 09:04h
acho que fiz tudo certo aqui, vou testar o squid limpo assim.
gostaria de liberar os ips pelo squid mesmo sem ter que usar firewall.
vlw
segue meu Squid.conf
# Mensagem de erro em Português
error_directory /usr/share/squid3/errors/Portuguese
# Porta do Squid
http_port 3128 transparent
cache_mem 512 MB
cache_swap_low 90
cache_swap_high 95
cache_dir ufs /var/spool/squid3 8192 16 256
maximum_object_size 512 MB
maximum_object_size_in_memory 64 KB
access_log /var/log/squid3/access.log squid
cache_log /var/log/squid3/cache.log
cache_store_log /var/log/squid3/store.log
pid_filename /var/log/squid3/squid3.pid
mime_table /usr/share/squid3/mime.conf
#cache_mgr sudporte@viacom.net.br
#memory_pools off
diskd_program /usr/lib/squid3/diskd
unlinkd_program /usr/lib/squid3/unlinkd
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern (cgi-bin|\?) 0 0% 0
refresh_pattern . 0 20% 4320
quick_abort_max 16 KB
quick_abort_pct 95
quick_abort_min 16 KB
request_header_max_size 20 KB
reply_header_max_size 20 KB
request_body_max_size 0 KB
acl manager proto cache_object
acl localhost src 127.0.0.1/32
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 21 # ftp
acl Safe_ports port 443 563 1863 # https
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered 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
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
# Cria outras acls com os IPs que serao aplicados a regra
acl redelocal src 192.168.0.0/24
acl ipsliberados src "/etc/squid3/regras/ipsliberados"
acl ipsrestritos src "/etc/squid3/regras/ipsrestritos"
# Sites Bloqueados
acl sites_proibidos url_regex -i "/etc/squid3/regras/sites_proibidos"
http_access deny sites_proibidos
# Sites Liberados
acl sites_proibidos url_regex -i "/etc/squid3/regras/sites_liberados"
http_access deny sites_proibidos
# Permisão rede local e servidor
acl redelocal src 192.168.0.0/24
http_access allow localhost
http_access allow redelocal
# Bloqueio de usuarios fora da rede
http_access deny all