olavogiamp
(usa Ubuntu)
Enviado em 29/10/2009 - 08:33h
Consegui, está funcionando perfeitamente, usei este procedimento.
Para conseguir navegar coloquei a rota diretamente no terminal:
sudo route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.244.10
O ip 192.168.244.10 é o meu Firewall.
Depois disso tinha outro problema, toda vez que reiniciava o problema voltava, pra deixar este procedimento automático usei este procedimento.
Entrei no arquivo rc.local
vim /etc/rc.local
Coloquei o comando para adicionar rota no final do arquivo, veja o aqruivo rc.local:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
route add -net 192.168.247.0 netmask 255.255.255.0 gw 192.168.245.254
route add -net 192.168.246.0 netmask 255.255.255.0 gw 192.168.245.254
route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.244.10
exit 0
Muito obrigado pela ajuda galera, espero que estas informações ajude alguém.