cyberdps
(usa Debian)
Enviado em 23/02/2008 - 18:01h
Galera é o seguinte eu tô tentando configurar um servidor de firewall com iptables e um proxy com squid. o firewall tem tudo certo, mas quando eu direciono o trafego da porta 80 para o squid nenhum computador se conecta a internet.Já tentei de tudo e não consigo encontrar o que está de errado não deu nenhum tipo de erro nem no squid nem no iptables.
segue abaixo meus scripts:
firewall
#
#Regras Padrao
#
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
#
#liberando interface lo
#
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
#
#Liberando SSH para rede Interna
#
iptables -A INPUT -p tcp --dport 22 -i eth1 -j ACCEPT
#
#liberando a entrada de conexoes iniciadas pela máquina
#
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
#
#Bloqueio de entrada na Rede de conexões inválidas
#
iptables -A INPUT -m state --state NEW,INVALID -j DROP
#
#habilitando o internet para rede interna
#
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
#
#habilita forward vinda da rede interna
#
iptables -t filter -A FORWARD -s 192.168.0.0/24 -j ACCEPT
iptables -t filter -A FORWARD -d 192.168.0.0/24 -j ACCEPT
#
#Liberando entrada pelo terminal server
#
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 3389 -j DNAT --to 192.168.0.201
#habilitando squiD
#
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 3128
iptables -A INPUT -p tcp --dport 3128 -j ACCEPT
proxy
#
http_port 3128 transparent
#
visible_hostname firewallgsa
#
dns_nameservers 200.225.197.34 200.225.197.37
cache_access_log /usr/local/squid/var/logs/access.log
error_directory /usr/local/squid/share/errors/Portuguese
#
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 CONNECT method CONNECT
http_access allow manager localhost
http_access allow localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
#
#Regras implementadas
#
acl redelocal src 192.168.0.0/24
acl diretoria src "/etc/squid/acls/diretoria"
acl bloqueados url_regex -i "/etc/squid/acls/bloqueados"
acl permitidos url_regex -i "/etc/squid/acls/permitidos"
http_access allow redelocal
http_access allow diretoria
http_access deny bloqueados !permitidos
http_access deny all
icp_access allow all
#
hierarchy_stoplist cgi-bin ?
access_log /usr/local/squid/var/logs/access.log squid
acl QUERY urlpath_regex cgi-bin \?
cache deny QUERY
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
acl apache rep_header Server ^Apache
broken_vary_encoding allow apache
coredump_dir /usr/local/squid/var/cache
Obs minha interface de rede é eth1
e a internet é eth0