|
|
pppoe拨号成功后,用ifdown -a停掉所有接口,然后再也没有办法pppoe成功,需要重启。
不知道大家遇到过没有?
$cat /etc/network/interfaces
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.254
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
# PPPoE connection
auto provider
iface provider inet ppp
pre-up /sbin/ifconfig eth0 up
provider provider |
|