From owner-freebsd-questions Mon Sep 9 07:50:34 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA24245 for questions-outgoing; Mon, 9 Sep 1996 07:50:34 -0700 (PDT) Received: from gatekeeper.barcode.co.il (gatekeeper.barcode.co.il [192.116.93.17]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id HAA24234 for ; Mon, 9 Sep 1996 07:50:26 -0700 (PDT) Received: (from nadav@localhost) by gatekeeper.barcode.co.il (8.6.12/8.6.12) id RAA04278; Mon, 9 Sep 1996 17:49:47 +0200 Date: Mon, 9 Sep 1996 17:49:47 +0200 (IST) From: Nadav Eiron To: Rob Buchanan cc: questions@freebsd.org Subject: Re: Multi host web server on FreeBSD In-Reply-To: <32344453.875@www.odod.ohio.gov> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk On Mon, 9 Sep 1996, Rob Buchanan wrote: > I need to add another ip address to our FreeBSD 2.1 web server. I am > running Apache 1.1.1 and will soon be adding urls with a different ip > address. I don't want to rely on Apache's non-ip virtual hosting > because it would not be transparent to all browsers. Do I need to add > another ethernet card or is there another way to serve more than one ip > address on the same FreeBSD server? Use IP aliases, like so: ifconfig de0 inet netmask 255.255.255.255 alias This will add an alias address to an existing interface (de0 in this example). Note that the mask should be all 1-s. > > Thanks > Rob Buchanan > rob@www.odod.ohio.gov >