Evert Verhellen wrote:

> I'm trying to connect to my ISP under Linux. The Linux kernel I'm using
> is version 2.2.5-15 (Red Hat 6.0). I have a Sportster 28800 attached to
> COM2. My connection script (/etc/ppp/ppp-on) is identical to the default
> script except for the device being used (ttyS1):
>
> > #!/bin/sh
> >
> > TELEPHONE=4001800
> > ACCOUNT=account
> > PASSWORD=password
> > LOCAL_IP=0.0.0.0
> > REMOTE_IP=0.0.0.0
> > NETMASK=255.255.255.0
> >
> > export TELEPHONE ACCOUNT PASSWORD
> >
> > DIALER_SCRIPT=/etc/ppp/ppp-on-dialer
> >
> > exec /usr/sbin/pppd debug kdebug 25 lock modem crtscts /dev/ttyS1 38400 \
> >         asyncmap 20A0000 escape FF kdebug 0 $LOCAL_IP:$REMOTE_IP \
> >         noipdefault netmask $NETMASK defaultroute connect $DIALER_SCRIPT
>
> After launching /etc/ppp/ppp-on I can see some modem lights flash for a
> very short period of time and then nothing. This what the file
> /var/log/messages says (little to me):
>
> > Jul 15 23:01:15 localhost syslogd 1.3-3: restart.
> > Jul 15 23:01:52 localhost kernel: CSLIP: code copyright 1989 Regents of the 
>University of California
> > Jul 15 23:01:52 localhost kernel: PPP: version 2.3.3 (demand dialling)
> > Jul 15 23:01:52 localhost kernel: PPP line discipline registered.
>

Seems like you are running ppp 2.3.3 here and then 2.3.7 further down. This could be 
you problem. What do
the others think? And what do you do about it:

I would say:

find out which version Redhat thinks it's using:

rpm -q ppp

Then uninstall that version:

rpm -ev ppp-2xxxxx

Then reinstall it from the CD (mount the CD first)

mount -t iso9660 /dev/cdrom /mnt/cdrom

cd /mnt/cdrom/Redhat/RPMS
ls ppp*

rpm -ivh ppp-2xxx.i386.rpm


and try again to edit your ppp-on script (which you get with the ppp rpm)

Hope this helps

Bernhard


> > Jul 15 23:01:52 localhost kernel: registered device ppp0
> > Jul 15 23:01:52 localhost pppd[963]: pppd 2.3.7 started by root, uid 0
> > Jul 15 23:01:53 localhost pppd[963]: Connect script failed
> > Jul 15 23:01:54 localhost pppd[963]: Exit.
>
> I think it's probably a configuration issue because the same hardware
> and scripts have worked under Linux 2.0. If anyone can help me, thanks
> in advance.
>
> --
> Evert Verhellen
> Antwerpen, Belgium
> mailto:[EMAIL PROTECTED]
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
> the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]

Reply via email to