fbsalvi
(usa Outra)
Enviado em 23/04/2010 - 14:57h
Poxa , bom uma pergunta seu script de firewall tem somente isso que ta descrito acima?
Os modulos estao carregados:
vamos fazer o seguinte:
Na ordem:
# Limpando as tabelas
iptables -F
iptables -t nat -F
iptables -t mangle -F
#
echo "1" > /proc/sys/net/ipv4/ip_forward
#
iptables -A FORWARD -p tcp --dport 3389 -j ACCEPT
iptables -A FORWARD -p udp --dport 3389 -j ACCEPT
#
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 3389 -j ACCEPT
iptables -t nat -A PREROUTING -i eth0 -p udp --dport 3389 -j ACCEPT
#Libera todas as portas
iptables -A FORWARD -p tcp --dport 0:65535 -j ACCEPT
iptables -A FORWARD -p udp --dport 0:65535 -j ACCEPT
#
#Libera todas portas
#
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 0:65535 -j ACCEPT
iptables -t nat -A PREROUTING -i eth0 -p udp --dport 0:65535 -j ACCEPT
#
# CARA ESSAS LINHAS ABAIXO EU COLOCO DENTRO DO /ETC/NETWORK/INTERFACES (final do arquivo), no UBUNTU
#
#post-up route add -net 192.168.0.0/24 gw 192.168.0.222
#post-up route add -net 192.168.1.0/24 gw 192.168.0.222
#...
#
# Roteamento entre filiais
#
route add -net 10.5.2.0 netmask 255.255.255.0 gw 10.5.1.1
route add -net 10.5.3.0 netmask 255.255.255.0 gw 10.5.1.1
route add -net 10.5.4.0 netmask 255.255.255.0 gw 10.5.1.1
route add -net 10.5.5.0 netmask 255.255.255.0 gw 10.5.1.1
#
# Liberando acesso total a servidores
# Servidor Red Hat Banco de Dados
#
iptables -A FORWARD -s 10.5.1.4 -j ACCEPT
iptables -A FORWARD -d 10.5.1.4 -j ACCEPT
#
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
Tenta assim
Fabiano