|
发表于 2006-4-19 02:07:23
|
显示全部楼层
如果说已经用pppoeconf配置了ADSL开机自动连接,还是不能自动连接的话,一般是因为开机时激活网卡的延迟造成,直接修改/etc/network/interface,把里面多余的“auto eth0”注解掉,或者直接删除就可以了,一下是我的配置文件,可供参考:
# 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
# The primary network interface
# added by pppoeconf
auto eth1
iface eth1 inet static
pre-up /sbin/ifconfig eth1 up # line maintained by pppoeconf
address 10.0.0.1
netmask 255.0.0.0
auto dsl-provider
iface dsl-provider inet ppp
provider dsl-provider |
|