From owner-freebsd-questions@FreeBSD.ORG Thu Jul 8 18:48:48 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 7605E16A4CE for ; Thu, 8 Jul 2004 18:48:48 +0000 (GMT) Received: from mail.imacs.com (mail.imacs.com [65.106.207.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E97D43D53 for ; Thu, 8 Jul 2004 18:48:48 +0000 (GMT) (envelope-from derrick@imacs.com) Received: from imacs-exchange.hms-domain.local (imacs-exchange.imacs.com [172.16.5.3]) by mail.imacs.com (8.12.10/8.12.10) with ESMTP id i68ImiT4091992 for ; Thu, 8 Jul 2004 13:48:44 -0500 (CDT) X-MimeOLE: Produced By Microsoft Exchange V6.0.6487.1 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Thu, 8 Jul 2004 13:48:45 -0500 Message-ID: <6E6A0B9771347B49937E7E3F30153465021EC4@imacs-exchange.hms-domain.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: DHCPD 2 mac adresses for one host Thread-Index: AcRlHDKfdKT46fo/Qcu2NthKYJmLBQ== From: "Schimcek, Derrick" To: X-Spam-Score: 0 () X-Scanned-By: MIMEDefang 2.42 Subject: DHCPD 2 mac adresses for one host 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, 08 Jul 2004 18:48:48 -0000 I have a server running FreeBSD 5.0 with bind 9.2.2 and dhcpd 3.0pl2 For security I made it to where unless your host name and Mac address = are defined in the dhcpd.conf file you don't get a lease. I have 3-5 hosts that are laptops with a network adapter that they = connect with and also a vpn adapter that they use to connect with from = home. I put the hardware ethernet mac address statement twice in a row and = dhcpd starts but only recognizes the first hardware ethernet statement. = does anyone know how to assign 2 mac addresses to one host or a better = way of doing this. dhcpd.conf file # domain /etc/dhcpd.conf # (add your comments here) default-lease-time 2592000; max-lease-time 3456000; option subnet-mask 255.255.0.0; option routers x.x.x.x; option domain-name-servers x.x.x.x, x.x.x.x; option domain-name "domain.com"; option netbios-name-servers x.x.x.x, x.x.x.x; ignore client-updates; ddns-update-style interim; subnet 172.16.0.0 netmask 255.255.0.0 { range 172.16.3.1 172.16.3.239; range 172.16.4.1 172.16.4.254; deny unknown-clients; } # John Smith host jsmith { hardware ethernet 00:08:74:bf:14:07; } # Derrick Smith host derrick { hardware ethernet 00:d0:b7:3e:c2:5d; } # Travis Young host tyoung { hardware ethernet 00:90:27:ea:24:8b; } # Allison West host Allison { hardware ethernet 00:08:a1:14:be:12; } # Creightons Laptop This is the entry not working host chues { # onboard NIC hardware ethernet 00:0b:db:e7:2a:06; # VPN Virtual NIC hardware ethernet 00:60:73:ea:3f:60; }