How can I make e-smith accept a passive ISDN-Card as DialOut-Device?
|
options hisax type=<type number> protocol=2
/sbin/e-smith/config set ModemInit "&E123456S14=3"
/sbin/e-smith/config set DialupModemDevice /dev/ttyI0
> modprobe hisaxIf all is correct, you will just get back your prompt - otherwise you will get an error message. Verify the correct (or incorrect) loading of the module by looking at the kernel message buffer:
> dmesg | lessIf you can see an error message here, well... you might want to check the faq of isdn4linux or Deja.com or send me a mail.
---------schnipp----------------------------------- #!/bin/sh # # Startup script for isdn4es # # description: isdn4es is needed to allow the usage of passive ISDN-cards \ # with e-smith (http://www.e-smith.org/). # Source function library. . /etc/rc.d/init.d/functions # See how we were called. case "$1" in start) echo -n "Starting isdn4es: " modprobe hisax echo ;; stop) echo -n "Shutting down isdn4es: " modprobe -r hisax echo ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit 0 ---------schnapp-----------------------------------
> wget http://internet-sicherheit.net/isdn4eson the console.
> chmod u+rwx /etc/rc.d/init.d/isdn4es
> ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc0.d/K90isdn4es > ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc1.d/K90isdn4es > ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc2.d/S10isdn4es > ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc3.d/S10isdn4es > ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc6.d/K90isdn4es > ln -s /etc/rc.d/init.d/isdn4es /etc/rc.d/rc7.d/S10isdn4es
/sbin/e-smith/config set ModemInit "&E123456S14=3"