malaguti
(usa Ubuntu)
Enviado em 30/07/2007 - 15:22h
ae amigos.. se poderem me ajudar os confs são o seguinte:
squid.conf
#=======================================
http_port 3128
cache_mem 64 MB
cache_dir ufs /squid/var/spool/squid 5000 16 256
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
pid_filename /var/run/squid.pid
error_directory /squid/Portugues
emulate_httpd_log on
visible_hostname servidor.empresa
cache_mgr marcos@empresa.br
refresh_pattern ^ftp: 15 20% 2280
refresh_pattern ^gopher: 15 0% 2280
refresh_pattern . 15 20% 2280
#
# Proxy Transparente
#*******************
#
#httpd_accel_host virtual
#httpd_accel_port 80
#httpd_accel_with_proxy on
#httpd_accel_uses_host_header on
#
# acl - Recomendadas
#*******************
#
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 563 # https, snews
acl SSL_ports port 873 # rsync
acl Safe_ports port 80
acl Safe_ports port 21
acl Safe_ports port 443 563 # https, snews
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 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl purge method PURGE
acl CONNECT method CONNECT
#
# acl - Personalizadas
#*********************
#
# *** Define portas liberadas
acl Safe_ports port 3050 # Interbase/Firebird
acl Safe_ports port 23000 # Serpro
acl Safe_ports port 13352 # SIRF
acl Safe_ports port 500 # FAP Digital
acl Safe_ports port 110
acl Safe_ports port 25
#
# *** Define a rede interna (Intranet)
acl intranet src 192.168.10.0/255.255.255.0
#
# LISTA DE SITES BLOQUEADOS
acl Site_Bloqueado url_regex "/etc/squid/bloqueio/sites.txt"
http_access deny Site_Bloqueado
# LISTA DE PALAVRAS BLOQUEADAS
acl Palavra_Bloqueada url_regex "/etc/squid/bloqueio/palavras.txt"
http_access deny Palavra_Bloqueada
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow all
http_access allow intranet
#=======================================
agora as minhas regras de firwall,
firewall.sh
#=======================================
echo " LIMPANDO AS REGRAS DO IPTABLES ----------- OK" &&
iptables -F INPUT &&
iptables -F OUTPUT &&
iptables -F FORWARD &&
echo " DEFININDO POLITICA DE REGRAS DO IPTABLES----- OK" &&
iptables -P INPUT DROP &&
iptables -P FORWARD ACCEPT &&
iptables -P OUTPUT ACCEPT &&
echo " LIBERANDO ACESSO AO SERVIDOR ----------------- OK" &&
iptables -A INPUT -i lo -j ACCEPT &&
iptables -A INPUT -s 0/0 -p udp -m multiport --sport 53 -j ACCEPT &&
iptables -A INPUT -s 0/0 -p tcp -m multiport --sport 22,25,80,110,443 -j ACCEPT &&
iptables -A INPUT -s 0/0 -p tcp -m multiport --dport 22,25,80,110,443 -j ACCEPT &&
iptables -A INPUT -s 0/0 -p tcp -m multiport --sport 53 -j ACCEPT &&
iptables -A INPUT -s 0/0 -p udp -m multiport --sport 22,25,80,110,443 -j ACCEPT &&
iptables -A INPUT -s 0/0 -p udp -m multiport --dport 22,25,80,110,443 -j ACCEPT &&
echo " LIBERANDO ACESSO A REDE LOCAL ---------------- OK" &&
iptables -A INPUT -i eth1 -p tcp -m multiport --dport 80,22,25,110,137,138,139,443,445,3128 -j ACCEPT &&
iptables -A INPUT -i eth1 -p tcp -m multiport --sport 80,22,25,110,137,138,139,443,445,3128 -j ACCEPT &&
iptables -A INPUT -i eth1 -p udp -m multiport --dport 137,138,139,445,3128 -j ACCEPT &&
iptables -A INPUT -i eth1 -p udp -m multiport --sport 137,138,139,445,3128 -j ACCEPT &&
echo " LIBERAÇÃO DOS SOCKETES ----------------------- OK" &&
iptables -A INPUT -m state --state ESTABLISHED,RELATED,NEW -j ACCEPT &&
echo " COMPARTILHAMENTO DA INTERNET, MASCARAMENTO ------ OK" &&
iptables -t nat -A POSTROUTING -s 192.168.10.0/24 -o eth0 -j MASQUERADE &&
echo " PERMITINDO REDIRECIONAMENTO DE PACOTES -------- OK" &&
echo 1 >/proc/sys/net/ipv4/ip_forward &&
echo &&
echo &&
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@" &&
echo "@@@ TERMINO DA CONFIGURAÇÃO @@@" &&
echo "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@" &&
#=======================================
bom seguinte...
eu nao gostaria de usar proxy transparente, ehheh seria mais facil.. mas preferimos colocar manualmente...
eu não coloquei na inicialização ainda.. pq nao está rodando certo..eu ainda estou a digitar os comandos...
to ficando loco.. somente me falta isso... os outlook das maquiinas clientes receberem email....
obrigado pela atenção já dispensada...
Marcos