ISDN (für DAU's)
Ingo Luetkebohle
ingo at devconsult.de
Fri Jun 4 15:38:44 CEST 1999
On Fri, 4 Jun 1999, Daniel Brose wrote:
> Erstmal hier die Warnung: Super-DAU mit DAU-Frage...
> Also folgendes: Ich habe jetzt mal spaßeshalber auf einem
> Rechner ne RedHat 6.0 installiert und will meine AVM B1 irgendwie
> zum Laufen kriegen. Ich habe leider noch kein HOWTO gefunden
> was mir alles in der Richtung step-by-step erklärt oder so. Volker
> hat auf die RH-CD die ISDN-Utils mit drauf gepackt.
Erstmal musst Du den Treiber für die Karte richtig konfigurieren:
Pack mal etwas in der Art in Deine /etc/conf.modules:
options hisax type=5 protocol=2 io=xxxx irq=xxx
io ist normalerweise 0x180, 0x280 oder 0x380, irq kannst Du Dir aussuchen
(nimm 'nen freien). Nähere Infos dazu findest Du unter
/usr/src/linux/Documentation/isdn/README.HiSaX
Unter KDE würde ich dann für alles weitere mal kisdn versuchen, ansonsten
frag noch mal nach isdnctrl und ipppd :-)
---Ingo
-------------- next part --------------
#!/bin/sh
#
# isdn Configure ISDN devices
#
# chkconfig: 2345 10 90
# description: bring up isdn devices
#
# Source function library.
. /etc/rc.d/init.d/functions
if [ ! -f /etc/sysconfig/network ]; then
exit 0
fi
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
# See how we were called.
case "$1" in
start)
echo "Loading ISDN hardware"
modprobe hisax
# Leitung ins Internet
isdnctrl addif ippp0
isdnctrl eaz ippp0 1
isdnctrl addphone ippp0 out LEASED0
isdnctrl addphone ippp0 in LEASED0
isdnctrl ihup ippp0 off
isdnctrl l2_prot ippp0 hdlc
isdnctrl l3_prot ippp0 trans
isdnctrl encap ippp0 syncppp
isdnctrl huptimeout ippp0 0
# config interface
ifconfig ippp0 inet ... netmask 255.255.255.255
# routen setzen
route add default dev ippp0
touch /var/lock/subsys/isdn
;;
stop)
ifconfig ippp0 down
isdnctrl hangup ippp0
rm -f /var/lock/subsys/isdn
;;
*)
echo "Usage: $0 {start|stop|restart|reload|status|probe}"
exit 1
esac
exit 0
More information about the Linux
mailing list