asms
(usa Linux Mint)
Enviado em 04/04/2013 - 13:13h
Pessoal, muito abrigado. Dei uma enxugada no arquivo squid.conf e consegui bloquear os ips.
Gostaria de saber um mínimo de comandos para configurar o meu squid para gravar o log de no lugar certo e efetivamente, gravar o log.
Também, quero bloquear:
arquivos para downloads
palavras perigosas ex.: sexo
url's perigosas
E também, gostaria de fazer o usuário acessar por um determinado horário, exemplo:
andre 12:00 às 13:00
17:50 às 18:30
Os outros horários ele não pode acessar.
Por favor, me deêm uma dica sobre estas informações (comandos, tags sei lá como se chama os comandos dos arquivos .conf)
Aí vai o meu arquivo squid.conf:
http_port 3128
visible_hostname localhost.tecnowork.com.br
#client_netmask 255.255.255.0 (Desabilitando a máscara de rede, aparecerá o IP no access.log)
# Configurações de cache, dono, logs, errors
cache_effective_user squid
cache_effective_group squid
cache_mem 256 MB
cache_dir diskd /etc/squid/cache/1 1999 128 512 Q1=64 Q2=72
cache_access_log /etc/squid/logs/access.log
cache_log /etc/squid/logs/cache.log
cache_store_log /etc/squid/logs/store.log
error_directory /usr/share/squid/errors/Portuguese
# Atualização do cache
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
auth_param basic children 5
auth_param basic realm Internet Security Pisa
auth_param basic credentialsttl 1 hours
auth_param basic casesensitive off
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
# ACL global e portas
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/255.255.255.255
acl SSL_ports port 443 563 # SSL, https, snews
acl Safe_ports port 80 8080 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 10000 # webmin
acl Safe_ports port 631 # cups
acl Safe_ports port 901 # samba
acl CONNECT method CONNECT
acl bloqueados src "/etc/squid/bloqueados"
# ACL's da rede local
acl REDE_INTERNA src "/etc/squid/REDE_INTERNA"
# Validação das redes local
http_access deny bloqueados
http_access allow REDE_INTERNA
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
Obrigado,
Andre