isp conection

isp conection

Post by Bill Ros » Sun, 31 Jan 1999 04:00:00



Hi,
 I can connect to my ISP.   Get an IP address assigned to my computer.  But
after the logon and connection my modem stalls.  Nothing works (browser,
irc, ftp,etc)   Works fine in windows.  I'm using rh5.2 and kde.   Any help
will be appreciated
Bill
 
 
 

isp conection

Post by Ed Jone » Sun, 31 Jan 1999 04:00:00



> Hi,
>  I can connect to my ISP.   Get an IP address assigned to my computer.  But
> after the logon and connection my modem stalls.  Nothing works (browser,
> irc, ftp,etc)   Works fine in windows.  I'm using rh5.2 and kde.   Any help
> will be appreciated
> Bill

Bill, need more information here.  My guess is you have a problem with
your chat script or you are not starting the ppp connection (using pppd)
in your chat script.  Maybe you've done this..

1.  Start Minicom, initialize the modem and try loging into your isp
using minicom.

2.  Record, carefully every character sent from your isp, beining
careful to note how may carriage returns are being sent by the isp and
how many you have to send to get a prompt.

3.  After you've sent your id and password in minicom, I'm guessing
you'll get a prompt character from your isp.  If you do, type in "ppp"
to start the ppp connection.. if you see a bunch of unreadable
characters coming across the screen then your isp is requiring
connections to manually start the ppp link using the "ppp" command.  If
this is the case, you'll need to edit your chat script in
/etc/sysconfig/network-scripts/chat-ppp0 (assuming you are using ppp0 as
your connection) to include the "ppp" command at the bottom of the
script.

Here is my script (the phone number, id and password are changed ;-)

'ABORT' 'BUSY'
'ABORT' 'ERROR'
'ABORT' 'NO CARRIER'
'ABORT' 'NO DIALTONE'
'ABORT' 'Invalid Login'
'ABORT' 'Login incorrect'
'' 'AT&F'
'OK' 'ATDT980-9999'
'TIMEOUT' '35'
'CONNECT' ''
'V42bis' '\r'
'ame:' 'my_user_id'
'ord:' 'my_password'
'ds.\r' '\d\d'
'' '\r'
'' '\r'
'' '\r'
'' 'ppp'

Notice the 'ppp' at the bottom.. that starts the ppp connection, and for
this isp, I have to send 4 carriage returns before sending the ppp ;-)
A bit weird, but that's what was required.

Please excuse my posting, if you've already done this.. this sort of
thing is of course detailed in the ppp_HOWTO.  The syntax for the chat
scipt in /etc/sysconfig/network-scripts/chat-ppp0 is detailed in the man
pages for chat.

Take care - Ed