From owner-freebsd-questions@FreeBSD.ORG Thu Nov 4 12:14:36 2004 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 7B28816A4CE; Thu, 4 Nov 2004 12:14:36 +0000 (GMT) Received: from onion.ish.org (onion.ish.org [219.118.161.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E423F43D31; Thu, 4 Nov 2004 12:14:35 +0000 (GMT) (envelope-from ishizuka@ish.org) Received: from localhost (ishizuka@localhost [IPv6:::1]) iA4CEY3s047360; Thu, 4 Nov 2004 21:14:34 +0900 (JST) (envelope-from ishizuka@ish.org) Date: Thu, 04 Nov 2004 21:14:34 +0900 (JST) Message-Id: <20041104.211434.74715204.ishizuka@ish.org> To: freebsd-questions@freebsd.org, freebsd-net@freebsd.org From: Masachika ISHIZUKA In-Reply-To: <4188C65D.4020005@mra.co.id> References: <4188C65D.4020005@mra.co.id> X-PGP-Fingerprint20: 276D 697A C2CB 1580 C683 8F18 DA98 1A4A 50D2 C4CB X-PGP-Fingerprint16: C6 DE 46 24 D7 9F 22 EB 79 E2 90 AB 1B 9A 35 2E X-PGP-Public-Key: http://www.ish.org/pgp-public-key.txt X-URL: http://www.ish.org/ X-Mailer: Mew version 4.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: Multiple default gateway 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: Thu, 04 Nov 2004 12:14:36 -0000 > Is there any (future) release of FreeBSD concern about multiple default > gateway ? > Supposed i want to have load balancing and round robin connection in my > FreeBSD firewall without routing daemon. It can be done using ipfw, if you want to use only IPv4. An example is shown below. (Although it is not round robin connections.) # route add default GW1 # ipfw add prob 0.5 fwd GW2 ip from any to any out # ipfw add allow ip from any to any -- ishizuka@ish.org