icefusion
(usa Debian)
Enviado em 30/11/2009 - 10:46h
Instalei o rp-pppoe, porém fikou uma dúvida.
Antes eu tinha um server q era um gateway em minha rede. Na instalação deste novo server eu coloquei ele como sendo gateway. Porém ao fim da instalação eu instalei o rp-pppoe. Configurei o firewall para servir de gateway em minha rede, porém naum conseguia, executei route -n e percebi q o gateway padrão era este gateway q eu tinha colocado no inicio da minha instalação. O que fiz para resolver foi apagar o gateway padrão e colocar o ip do novo gateway (q eh um rádio). Porém não sei se este é a melhor forma para isso.
Alguem tem uma idéia de como fazer?
route -n
Tabela de Roteamento IP do Kernel
Destino Roteador MáscaraGen. Opções Métrica Ref Uso Iface
10.0.0.2 0.0.0.0 255.255.255.255 UH 0 0 0 tun0
201.94.192.1 0.0.0.0 255.255.255.255 UH 0 0 0 ppp0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 201.94.192.1 0.0.0.0 UG 0 0 0 ppp0
/etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.3
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.252
broadcast 192.168.1.255
dns-nameservers 192.168.1.3 200.155.48.67 200.155.25.32
dns-search hades
iface eth1 inet static
address 0.0.0.0
netmask 0.0.0.0
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.
/usr/sbin/pppoe-start
/etc/firewall/firewall.sh
/etc/rotas/rota.sh
exit 0
rotas.sh
#!/bin/sh
route del default
route add -net 127.0.0.0 netmask 255.0.0.0 dev lo
route add default gw 201.94.192.1