Urso_Polar
(usa Ubuntu)
Enviado em 19/08/2010 - 13:46h
Prezados, boa tarde!
Seguinte: Preciso passar um único IP por fora do Squid e do Sarg. Estou encontrando dúvidas e não consegui elaborar a solução.. Não fui eu quem montou esse squid. Segue as configurações feitas nele:
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
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # 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 Safe_ports port 8017 # TED
acl CONNECT method CONNECT
#Recommended minimum configuration:
#
# Only allow cachemgr access from localhost
http_access allow manager localhost
http_access deny manager
# Deny requests to unknown ports
http_access deny !Safe_ports
# Deny CONNECT to other than SSL ports
http_access deny CONNECT !SSL_ports
#### Inicio das regras personalizadas
acl diretoria src 192.168.5.35 192.168.5.36 192.168.5.37 192.168.5.38 192.168.5.150 192.168.5.176 192.168.5.180 192.168.5.199
acl bloqueados src "/etc/squid/acls/hosts"
http_access deny bloqueados
#regras para sites
acl proibir_sites url_regex -i "/etc/squid/acls/sites"
acl liberar_sites url_regex -i "/etc/squid/acls/sitesfree"
http_access allow proibir_sites diretoria
http_access allow liberar_sites
http_access deny proibir_sites
#regras para palavras
#acl proibir_palavras url_regex -i "/etc/squid/acls/palavras"
#acl liberar_palavras url_regex -i "/etc/squid/acls/palavrasfree"
#http_access allow proibir_palavras diretoria
#http_access allow liberar_palavras
#http_access deny proibir_palavras
#liberar servidores avira
#acl liberar_avira url_regex -i "/etc/squid/acls/avira"
#http_access allow liberar_avira
#regras para musicas
acl proibir_musica urlpath_regex -i \.aif$ \.aifc$ \.aiff$ \.asf$ \.avi$ \.au$ \.m3u$ \.med$ \.mp3$ \.m1v$ \.mp2$ \.mp2v$ \.mpa$ \.mov$ \.mpe$ \.mpg$ \.mpeg$ \.ogg$ \.pls$ \.ram$ \.ra$ \.ram$ \.snd$ \.wma$ \.wmv$ \.wvx$ \.mid$ \.midi$ \.rmi$ \.flv$
http_access deny proibir_musica
acl permitir_rede src 192.168.5.0/24
http_access allow permitir_rede
#### Fim das regras personalizadas
Grato desde já!