From owner-freebsd-questions@FreeBSD.ORG Tue Nov 15 02:58:28 2005 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org 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 72FEB16A41F for ; Tue, 15 Nov 2005 02:58:28 +0000 (GMT) (envelope-from bsdmail@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id F210A43D45 for ; Tue, 15 Nov 2005 02:58:27 +0000 (GMT) (envelope-from bsdmail@gmail.com) Received: by xproxy.gmail.com with SMTP id t10so1818486wxc for ; Mon, 14 Nov 2005 18:58:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=ZpLtQXP6IE23MuthYUrVIYGwZ1U0BZj3d0S3VmCT2PnWrhwnTJI9+ewMXk5s9SyL4NZqkD4Iuzpdfr1rqpG3MBp8d0K3LxqB2wwu/kkbZ2cfGQCTWcWazS/fXs0VgtzKa9qGANQvqb4+f0H32/Su8f9L4O6hUaEoekTDZ7CA1Us= Received: by 10.65.83.4 with SMTP id k4mr3834295qbl; Mon, 14 Nov 2005 18:58:27 -0800 (PST) Received: by 10.65.119.1 with HTTP; Mon, 14 Nov 2005 18:58:27 -0800 (PST) Message-ID: <8be663db0511141858y7cfb46fbo8bcee98bca50ccaf@mail.gmail.com> Date: Mon, 14 Nov 2005 18:58:27 -0800 From: BSD Mail To: FreeBSD-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: dhcp server on multiple interfaces. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2005 02:58:28 -0000 Hello everyone, I'm configuring a gateway machine with 3 network interfaces int_ext (rl0) will obtained a real static IP from a public dhcp server. int_dmz (fxp0) 10.0.1.1/24 > both internal networks will need a dhcp server to assign them the right subnet int_lan (xl0) 10.0.0.1/24 I already figured out how to specify multiple subnets and grouping, static address etc... in the dhcp config file. what I want to make sure of is the /etc/rc.conf would this entry be valid and assign the right IP from the range of subnet = : dhcpd_ifaces=3D"fxp0 xl0" will that cause the dhcp server to assign 10.0.1.x/24 addresses to the machines on the switch connected to fxp0 ? and 10.0.0.x/24 to the machines on the switch connected to xl0 ? If not what's the maximum number of interfaces I can specify in the option dhcpd_ifaces=3D"" assuming I have all the subnets and related information configured correctly in the dhcpd.conf ? -- thanks,