From owner-freebsd-questions@FreeBSD.ORG Sat Apr 5 16:36:59 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C01837B401 for ; Sat, 5 Apr 2003 16:36:59 -0800 (PST) Received: from pop018.verizon.net (pop018pub.verizon.net [206.46.170.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4196F43FBD for ; Sat, 5 Apr 2003 16:36:58 -0800 (PST) (envelope-from cswiger@mac.com) Received: from mac.com ([129.44.43.88]) by pop018.verizon.net (InterMail vM.5.01.05.27 201-253-122-126-127-20021220) with ESMTP id <20030406003657.HIXG1699.pop018.verizon.net@mac.com>; Sat, 5 Apr 2003 18:36:57 -0600 Message-ID: <3E8F76A7.9050005@mac.com> Date: Sat, 05 Apr 2003 19:36:55 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20030406010650.GA4925@thisbe.carlisle.za.net> In-Reply-To: <20030406010650.GA4925@thisbe.carlisle.za.net> X-Enigmail-Version: 0.73.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop018.verizon.net from [129.44.43.88] at Sat, 5 Apr 2003 18:36:57 -0600 cc: "Angus Rodinson \(Angooooooooooooooooose\)" Subject: Re: route X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 00:36:59 -0000 Angus Rodinson (Angooooooooooooooooose) wrote: [ ... ] > 192.168.0.10 = dial up and router with natd > 192.16.0.2 = client side with FreeBS > i have an idea that is something like route add 192.168.0.2 192.168.0.10 I think you're asking how to set up a route by hand, so try: ifconfig _if_ inet 192.168.0.2 netmask 255.255.255.0 up route add default 192.168.0.10 ...where "_if_" is your ethernet interface (perhaps fxp0, dc0, etc). If the dialup machine/NAT router is fully configured, you probably could be able to simply do a "dhclient" and get a lease. -- -Chuck