Hello All,I reconfigure network connexns and assigned IP addresses
for LAN etc and eth0 is starting at bootup.if i try 'pon dsl-provider', ppp0 is listed as active by ifconfig. however if i ran:
Code:
route add default ppp0
every time inorder to get connected

heres my /etc/network/interfaces:
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# please do not modify the following line
# please do not modify the following line
iface eth0 inet static
name Ethernet LAN card
address 192.168.1.2
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
gateway 192.168.1.1
auto eth0
iface dsl-provider inet ppp
provider dsl-provider
# please do not modify the following line
pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
Please help me................