[2030] in linux-net channel archive
Re: 28.8k modem init
daemon@ATHENA.MIT.EDU (root)
Thu Mar 7 16:37:58 1996
Date: Thu, 7 Mar 1996 10:40:36 -0600 (CST)
From: root <root@weasal.genesis.net>
To: "Shawn G. Doughty" <doughty@cis.nmclites.edu>
cc: linux-net@vger.rutgers.edu
In-Reply-To: <Pine.LNX.3.91.960305234609.16591A-100000@cis.nmclites.edu>
On Tue, 5 Mar 1996, Shawn G. Doughty wrote:
> Does anyone have a good initialization string for the Motorola Power
> modem or the Hayes Optima? I am trying to get one working on the
> server in our office and am having a rotten time getting it setup. So far our
> little USR Sporster has been working fantastic but I would rather use the
> Motorola or Hayes. All three are hooked to a cyclades card with spd_hi
> set. setserial doesn't returns an error when I tried spd_vh
>
> any ideas?
>
> Thanks,
> Shawn G. Doughty
> doughty@cis.nmclites.edu
>
>
>
I use these scripts on my Hayes Accura... Give them a try.
this one is called run.ppp
#!/bin/sh
cd /usr/lib/ppp
#while :
#do
/usr/sbin/fix-cua cua1
stty 38400 -tostop < /dev/cua1
/bin/setserial /dev/cua1 spd_vhi
/usr/sbin/pppd file /usr/sbin/options.cua1 /dev/cua1 38400
#done
this one is options.cua1
-detach
connect '/usr/sbin/login_cua1'
crtscts
defaultroute
lock
modem
netmask 255.255.255.0
noipdefault
last one is login_cua1
/usr/sbin/chat -v "" ATM1DT3551136 CONNECT "" ogin: xxxx word: xxxxxxxx
I hope these work for you.
Chris
chuck@arn.net