jrdsilva
(usa Outra)
Enviado em 16/08/2013 - 11:34h
possuo um servidor instalado squid3 efetuando o cache da porta 80 e porta 443, esta tudo funcionando, mas somente as paginas do google e gmail não acessam, n cosigo abrir de forma alguma.
realizei pesquisar e descobri que:
Google normalmente tenta se autenticar por uns dominios diferentes dele, que complica o negocio
Tipo, se vc tentar acessar
https://www.google.com
ele vai te direcionar antes pra
https://accounts.google.com
e o meu squid n esta conseguindo passar.
seria possivel relver esse problema? fazer o google passar pelo proxy
o tenho q liberar o google no iptables, para não ate o proxy? se sim como ficaria a regra do iptables.
segue rc.local
###################################################################################
modprobe iptable_nat
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -I FORWARD -i eth1 -j ACCEPT
iptables -I FORWARD -o eth1 -j ACCEPT
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j \
REDIRECT --to-port 3128
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 443 -j \
REDIRECT --to-port 3130
####################################################################################
Squid.conf
http_port 3128 transparent
https_port 3130 transparent key=/etc/squid3/ssl.key cert=/etc/squid3/ssl.crt
cache_mem 1000 MB # Se seu servidor for dedicado, coloque neste valor a metade $
cache_swap_low 90
cache_swap_high 95
cache_dir ufs /var/spool/squid3 20240 16 256
maximum_object_size 30000 KB
maximum_object_size_in_memory 40 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 # pid - mudamos para esta pasta para fa$
mime_table /usr/share/squid3/mime.conf
dns_nameservers 8.8.8.8 8.8.4.4
cache_mgr david@frangodeouro.com.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 redelocal src 192.168.10.0/24 # Representa a sua rede e respectiva m᥽scaraacl 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
http_access allow redelocal
cache_mgr webmaster
mail_program mail
cache_effective_user proxy
cache_effective_group proxy
httpd_suppress_version_string off
visible_hostname FOURO
error_directory /usr/share/squid3/errors/Portuguese/