jonathanch
(usa Debian)
Enviado em 27/02/2020 - 12:42h
Ola, estou com um problema na minha empresa e espero que alguém possa me ajudar.
Tenho um Debian com squid para gerenciar minha rede o problema e que a navegação esta muito lenta em sites que utilizam http e os que utilizam https as vezes nem abre.
Segue meu squid:
### ARQUIVO DE CONFIGURACAO DO SQUID ###
http_port 3128
## CACHE ##
maximum_object_size 4096 KB
minimum_object_size 0 KB
maximum_object_size_in_memory 64 KB
cache_mem 512 MB
## AJUSTA A PERFORMANCE EM CONEXOES PIPELINE ##
pipeline_prefetch on
## CACHE DE FQDN ##
fqdncache_size 1024
## OPCOES DE REFRESH PATTERN ##
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
refresh_pattern . 0 20% 4320
## DEFINE A PORCENTAGEM DO USO DO CACHE ##
cache_swap_low 90
cache_swap_high 95
## ARQUIVO DE LOGS DO SQUID ##
access_log /var/log/squid/access.log squid
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
## DEFINE O LOCAL DO CACHE ##
cache_dir ufs /var/spool/squid 1600 16 256
## CONTROLE DE ROTACAO DOS ARQUIVOS DE LOGS ##
logfile_rotate 10
## ARQUIVO ONDE CONTEM OS ENDERECOS LOCAIS DA REDE ##
hosts_file /etc/hosts
## ACLS - PORTAS PADROES LIBERADAS ##
acl SSL_ports port 80 #HTTP
acl SSL_ports port 443 #HTTPS
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 5222 # teste_Spark
acl Safe_ports port 9090 # teste_Spark open_fire
acl Safe_ports port 9091 # teste_Spark open_fire
acl CONNECT method CONNECT
### DEFININDO MODO DE AUTENTICACAO
auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid/usuarios
auth_param basic children 5
auth_param basic realm "===== ACESSO RESTRITO ======= DIGITE SEU USUARIO E SENHA PARA ACESSO A INTERNET:"
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off
### ACL PARA GARANTIR A AUTENTICACAO DO USUARIO NOS SITES ###
acl autenticados proxy_auth REQUIRED
## BLOQUEIA O ACESSO UNSAFE PORTS ##
#http_access deny !Safe_ports
## Deny CONNECT to other than secure SSL port ##
#http_access deny CONNECT !SSL_ports
### IP's liberados ####
acl ip_liberados src "/etc/squid/regras/ip_liberados"
## SITES LIBERADOS SEM AUTENTICACAO PARA ACESSO ##
acl sites-sem-autent url_regex -i "/etc/squid/regras/sites_liberados_sem_autent"
## SITES BLOQUEADOS PARA ACESSO ##
acl sites-bloqueados url_regex -i "/etc/squid/regras/sites_bloqueados"
## SITES LIBERADOS PARA ACESSO ##
acl sites-liberados url_regex -i "/etc/squid/regras/sites_liberados"
## LIBERACAO PARA GRUPO TI - SUPORTE ##
acl acesso_suporte proxy_auth "/etc/squid/regras/suporte"
## LIBERACAO PARA GRUPO MARKETING ##
acl acesso_marketing proxy_auth "/etc/squid/regras/marketing"
acl coordena proxy_auth "/etc/squid/regras/coordena"
acl secre_uno proxy_auth "/etc/squid/regras/secre_uno" #secretaria#
acl coord_uno proxy_auth "/etc/squid/regras/coord_uno" #coordenacao#
acl proibido_secre_uno url_regex "/etc/squid/regras/secre_uno" #secretaria#
acl proibido_coord_uno url_regex "/etc/squid/regras/coord_uno" #coordenacao#
## DEFININDO A ORDEM DAS REGRAS - ACLS ##
http_access allow sites-sem-autent
http_access allow autenticados
http_access allow secre_uno
http_access allow coord_uno
http_access deny proibido_secre_uno
http_access deny proibido_coord_uno
http_access allow coordena
http_access allow acesso_suporte
http_access allow ip_liberados
http_access allow acesso_marketing
http_access deny sites-bloqueados
#http_access allow autenticados
http_access allow sites-liberados
http_access deny all
http_reply_access allow all
icp_access allow all
miss_access allow all
## NOME QUE IRA APARECER NA TELA DE ERRO OU BLOQUEIO DO SQUID ##
visible_hostname FENIX
## DIRETORIO DAS PAGINAS DE ERROS ##
error_directory /usr/share/squid/errors/pt-br
## OUTRAS OPCOES DE CACHE ##
#cache_effective_user proxy
#coredump_dir /var/spool/squid