isdn4linux - Einwahl schlägt fehl

Lord Kefir

Lord Kefir

König
Einige hatten mich ja schon gewarnt: ISDN unter Linux macht nicht wirklich Spaß. Nach einigen Problemchen habe ich mich heute wieder an den entsprechenden Rechner gesetzt und komme jetzt einfach nicht mehr weiter.

Ich habe isdn4linux installiert, den Passwortkram in das File /etc/ppp/pap-secrets etc. geschrieben, /etc/ppp/options angepasst und ein Script geschrieben, mit welchem eine Verbindung hergestellt werden soll:

Code:
#!/bin/sh
# variables:
MSN=(hier steht die Telefonnummer)
DEV=ippp0
OUT=(hier steht die Nummer des Anbieters)

# delete old device:
ifconfig $DEV down
isdnctrl delif $DEV
isdnctrl reset

# create new device:
isdnctrl addif $DEV
isdnctrl eaz $DEV $MSN
isdnctrl addphone $DEV out $OUT
isdnctrl secure $DEV on
isdnctrl l2_prot $DEV hdlc
isdnctrl l3_prot $DEV trans
isdnctrl huptimeout $DEV 60
isdnctrl dialmax $DEV 3
isdnctrl pppbind $DEV 0
ifconfig ippp0 1.1.1.1 pointopoint 192.168.0.1 up
isdnctrl verbose 3
isdnctrl dial ippp0

Leider schlägt der Login einfach fehl - über eine ordentliche Fehlermeldung würde ich mich selbst freuen ;)

/var/log/messages schrieb:
Aug 6 17:26:52 linda kernel: isdn: Verbose-Level is 3
Aug 6 17:26:52 linda kernel: ippp0: dialing 1 blablabla...
Aug 6 17:27:00 linda kernel: ippp0: dialing 2 blablabla...
Aug 6 17:27:09 linda kernel: ippp0: dialing 3 blablabla...
Aug 6 17:27:17 linda kernel: isdn_net: local hangup ippp0
Aug 6 17:27:17 linda kernel: ippp0: Chargesum is 0

Jetzt wüsste ich sehr gerne, woran das Problem denn genau liegen könnte. Ich gehe dann mal weitergoogeln...

Mfg, Lord Kefir
 
Problem hat sich erledigt... es wurde das falsche Modul für die Karte geladen...

Mfg, Lord Kefir

[edit]
Juchu! Wie man sieht, läuft es jetzt :)
[/edit]
 
Zuletzt bearbeitet:

Ähnliche Themen

VPN verbindet nichtmehr

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

Mysteriöser 11.4 Absturz - Maschine läuft, SSH und vor Ort Login unmöglich

Festplatte friert ein nach suspend/resume

Modulfehler?

Zurück
Oben