> If anyone has connect with the internet using pppd and
> some kind of modem program, etc. chat, minicom, ..., please
> send me your current modem settings.
> I can get a IP # but all my transfers are slow. I think
> this might be because my modem is not setup properly. I
> you have any other ideas, please let me know.
I am running kernel 2.0.x on Red Hat 3.0.3. My modem is
USR Sportster 28.8/33.6 external. I get good modem
performance with this setup.
The following pieces (only the relevant parts)
are taken from my /usr/sbin/ppp-on script.
MODEMINIT="AT&F1&A3&B1&C1&D2&I0&H1&R2&K3&M4&S0&S1S0=0S13=1X4E1Q0V1"
MODEMSPEED="115200"
MRUVAL="1500"
DEVICE="cua1"
/bin/setserial -v /dev/$DEVICE spd_vhi
{
/bin/stty $MODEMSPEED -tostop
if /usr/sbin/chat -v ABORT "NO CARRIER" ABORT BUSY "" \
ATZ OK $MODEMINIT OK ATDT$PHONE CONNECT "" \
$LOGINPROMPT $USER $PASSPROMPT \\q$PASSWORD
then
/usr/sbin/pppd asyncmap 0 -detach modem crtscts \
defaultroute noipdefault mru $MRUVAL /dev/$DEVICE $MODEMSPEED
exit 0
else
echo "PPP call failed" 1>&2
exit 1
fi
) < /dev/$DEVICE > /dev/$DEVICE
> Thanks,
--