[EMAIL PROTECTED] (Malte Starostik) writes:
> 2. ISDN configuration: (isdn4net-1.4.3-9mdk)
> ----------------
>
> - in /etc/ppp/{pap,chap}-secrects, the user name and password are not quoted,
> which is bad if you have a #-sign in your user name (a very big German ISP
> does that for all of its users...)
corrected (not in 7.2)
>
> - in /etc/isdn/profile/link/myisp the variable I4L_LOCALMSN contained only
> the last four digits of the MSN I entered during setup
corrected (in 7.2)
>
> - /etc/isdn/profile/card/mycard had I4L_MODULE set to "" instead of "hysax"
> although I did select a card and the hardware params had been set accordingly.
> Also, I4L_ID="HiSax" was missing, so that hisaxctl called from
> /etc/rc.d/init.d/isdn4linux just spit out a usage message
corrected (not in 7.2)
>
> - /etc/rc.d/init.d/network explicitly excludes ippp devices! Why that? the
> ifcfg-ippp0 had ONBOOT set to "no" so preventing users from unwanted dialups
> can't be the reason. After I removed the
> egrep -v 'ifcfg-ippp[0-9]+$' | \
> line and set ONBOOT to "yes", the interface was brought up as should be (I
> asked for autodial mode, so I'm likely to want the interface go up on boot
> time, no?)
corrected (not in 7.2)
>
> - I needed to do the following to get the default route to ippp0 right:
> * Add the following lines before ifup-post is called to
> /etc/syscontrol/network-scripts/ifup-ippp:
>
> .. /etc/sysconfig/network
>
> if [ -n "$GATEWAYDEV" -a "$GATEWAYDEV" == "$DEVICE" ]; then
> route add default $DEVICE
> fi
> * Add I4L_PPPOPTIONS="defaultroute" to /etc/isdn/profile/link/myisp
> * Create /etc/ppp/ip-down.local:
> #!/bin/bash
>
> .. /etc/sysconfig/network
>
> if [ -n "GATEWAYDEV" -a "$GATEWAYDEV" == "$1" ]; then
> /sbin/route add default $1
> fi
well, when dialing with draknet, it does a del default route before dialing
--
dam's