seit einem apt-get upgrade wird die DSL-Verbindung nicht mehr direkt beim Booten hergestellt. Ich vermute, dass es an der folgenden Ausgabe liegt, die beim Booten gezeigt wird:
Code: Alles auswählen
* /etc/ppp/ppp_on_boot is deprecated. Please configure your system to use
* the standard /etc/network/interfaces method.
* You can consult /usr/share/doc/ppp/README.Debian.gz and interfaces(5)
* for details.
*
* This message has been printed by /etc/init.d/ppp .
1) /etc/network/interfaces angepasst:
Code: Alles auswählen
auto lo eth0 eth1
...
iface eth1 inet ppp
provider dsl-provider
Nach dem Booten steht aber in /var/log/syslog:
Code: Alles auswählen
Jun 5 10:42:34 localhost pppd[1768]: Plugin rp-pppoe.so loaded.
Jun 5 10:42:34 localhost pppd[1769]: pppd 2.4.3 started by root, uid 0
Jun 5 10:42:34 localhost pppd[1769]: sendPacket: send: Network is down
Jun 5 10:42:34 localhost pppd[1769]: Exit.
Um dann doch noch ins Internet zu gelangen, muss ich folgendes machen:
Code: Alles auswählen
muppets:~# pppoe -A -I eth1
Access-Concentrator: DTMX44-erx
Got a cookie: 17 ea 60 00 da 67 77 86 22 49 ed ac 14 d7 84 d4
AC-Ethernet-Address: 00:90:1a:41:65:87
--------------------------------------------------
muppets:~# ifup eth1
ifup: interface eth1 already configured
muppets:~# ifdown eth1
/usr/bin/poff: No pppd is running. None stopped.
muppets:~# ifup eth1
Plugin rp-pppoe.so loaded.
Was muss ich tun, damit direkt beim Booten eine Verbindung zum Internet hergestellt werden kann?