From owner-freebsd-questions Thu Aug 7 17:05:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA08580 for questions-outgoing; Thu, 7 Aug 1997 17:05:09 -0700 (PDT) Received: from nico.telstra.net (nico.telstra.net [139.130.204.16]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA08574 for ; Thu, 7 Aug 1997 17:05:05 -0700 (PDT) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by nico.telstra.net (8.6.10/8.6.10) with ESMTP id KAA08041; Fri, 8 Aug 1997 10:04:29 +1000 From: Greg Lehey Received: (grog@localhost) by freebie.lemis.com (8.8.7/8.6.12) id JAA16037; Fri, 8 Aug 1997 09:34:28 +0930 (CST) Message-Id: <199708080004.JAA16037@freebie.lemis.com> Subject: Re: Multiple PPP Connections In-Reply-To: <3.0.2.32.19970808093819.006b4334@192.168.60.1> from Steven Harris at "Aug 8, 97 09:38:19 am" To: steve@pipaimge.powerup.com.au (Steven Harris) Date: Fri, 8 Aug 1997 09:34:28 +0930 (CST) Cc: freebsd-questions@FreeBSD.ORG 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 X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Steven Harris writes: > Howdy, > > Is it possible with FreeBSD to have 2 PPP modem links and to stream traffic > through both of them? Yes. > Would this involve every second changing the default route from one ppp > device to another? No. There are two possibilities to handle the routing via multiple interfaces, whether they be PPP or some other IP interface. 1. One interface goes to the Internet, and the other interfaces are relatively local. This is the usual case. You specify the networks that are behind the "local" interfaces, and put the default route on the Internet gateway. 2. You have two Internet interfaces (for example, to two ISPs). In this case, you should run some routing protocol, preferably OSPF. Look at the gated port for more information. Greg