Subject: Re: Problems with pppd:(
To: None <port-amiga@netbsd.org>
From: Jerome Lovy <jlovy@mygale.org>
List: port-amiga
Date: 10/12/1998 09:27:19
On Sat, Oct 10, 1998 at 05:40:01PM +0100, ""andrea.franceschini@linet.it wrote:
> (sorry for my english)
> 
> I'm trying to set-up my ISP connection trought PPP.
> 
> After many effort i finally set-up my connection but...
> 
> This is my configuration
> ------------------------------------------------
> #/etc/ppp/peers/linet
> ------------------------------------------------
> tty00 57600 
> crtscts
> modem
> domain linet.it
> defaultroute
> noipdefault
> netmask 255.255.255.0
> user me 
> connect '/usr/sbin/chat -v -f /etc/ppp/chat-linet'
> -------------------------------------------------
> 
> -------------------------------------------------
> #/etc/ppp/chat-linet
> -------------------------------------------------
> ABORT 'NO CARRIER'
> ABORT 'NO DIALTONE'
> ABORT 'ERROR'
> ABORT 'BUSY'
> ABORT 'NO ANSWER'
> '' ATZ0
> OK ATX3
> OK ATDT71586543
> CONNECT ''
> -------------------------------------------------
> 
> 
> -------------------------------------------------
> #/etc/ppp/pap-secrets
> -------------------------------------------------
> me * <My Password>
> -------------------------------------------------
> 
I'm not very familiar with that style of configuration.
My supposition is that you miss the
identification/authentification step.
Maybe you can try something like :

      -------------------------------------------------
      #/etc/ppp/chat-linet
      -------------------------------------------------
      ABORT 'NO CARRIER'
      ABORT 'NO DIALTONE'
      ABORT 'ERROR'
      ABORT 'BUSY'
      ABORT 'NO ANSWER'
      '' ATZ0
      OK ATX3
      OK ATDT71586543
      username>--username> MyUserName
      password> MyPassword

This is my style of configuration.
Of course, the strings "username>" and "password>" depend on your
provider... You should try "manually" connecting to your provider
first. Or maybe you have "Miami" on AmigaOS side, which is quite
convenient for sketching a PPP connection script.

>  
> I start connection using: 'pppd call linet'
> 
> The modem dial correctly , also i get the correct ip_local:ip_remote
> and using ifconfig -a i can see that the ppp0 interface is UP
> 
> Also the routing tables seems to be right.
> 
> But when i try to ping outside my computer i.e.:
> ping <remote IP> 
Do you really mean <remote IP> ? Because if it was a fully
qualified domain name, then your problem might reside in
"/etc/resolv.conf" (missing name-server).

Hope it helps,

Jerome