From owner-freebsd-questions Thu Sep 11 16:36:16 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id QAA06903 for questions-outgoing; Thu, 11 Sep 1997 16:36:16 -0700 (PDT) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id QAA06822 for ; Thu, 11 Sep 1997 16:36:06 -0700 (PDT) Received: (from grog@localhost) by freebie.lemis.com (8.8.7/8.8.5) id JAA16846; Fri, 12 Sep 1997 09:05:55 +0930 (CST) Message-ID: <19970912090555.43640@lemis.com> Date: Fri, 12 Sep 1997 09:05:55 +0930 From: Greg Lehey To: Allen Louden Cc: FreeBSD Questions Subject: Re: ppp References: <3.0.32.19970911154543.006bcf14@access.mountain.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <3.0.32.19970911154543.006bcf14@access.mountain.net>; from Allen Louden on Thu, Sep 11, 1997 at 03:45:45PM -0400 Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8250 Fax: +61-8-8388-8250 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog Fight-Spam-Now: http://www.cauce.org Sender: owner-freebsd-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Thu, Sep 11, 1997 at 03:45:45PM -0400, Allen Louden wrote: > Greg, > > OK, here we go. The following is how the output looks after the changes > were made and with the PPP connection made. > > ifconfig -a > lp0:flags=8810(POINTTOPOINT,SIMPLEX,MULTICAST)mtu 1500 > tun0:flags=8051(UP,POINTTOPOINT,RUNNING,MULTICAST)mtu 1500 > inet 198.77.21.33 --> 198.77.21.4 netmask 0xffffff00 > s10:flags=c010(POINTTOPOINT,LINK2,MULTICAST)mtu552 > lo0:flags=8049(UP,LOOPBACK,RUNNING MULTICAST) mtu 16384 > inet 127.0.0.1 netmask oxffffff00 That looks better. Can you ping 198.77.21.4? >>>> netstat -rn >>> Internet: >>> Destination Gateway Flags REFS > USE > 127.0.0.1 127.0.0.1 UH O > 0 > 198.77.21.4 198.77.21.33 UH O > 0 > > > Netif Expire > lo0 > Tun0 You still don't have a default route. Do: # route add default 198.77.21.4 After that, try: # ping 198.77.21.4 # ping 198.77.1.3 # ping Access.Mountain.Net > cat /etc/resolv.conf > > Domain mountain.net > NS 198.77.1.1 > NS 198.77.1.3 > > However, I still am unable to ftp, or browse in Netscape. (guess I > could be doing something wrong there too, who knows?) I've never seen NS in resolv.conf before. I meant to mention that yesterday, but it slipped. I've now checked in the documentation, and I can't find any mention of it there, either. If you can ping 198.77.1.3, but you can't ping Access.Mountain.Net, replace NS with nameserver in /etc/resolv.conf. Either way, let me know what happens. If all this works, we're not done yet. We still need to put it back into /etc/rc.conf. But we'll do that when things are working. Greg