From owner-freebsd-questions@FreeBSD.ORG Mon Oct 27 16:34:45 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77B45106566B for ; Mon, 27 Oct 2008 16:34:45 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 6B8B38FC1E for ; Mon, 27 Oct 2008 16:34:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2) with ESMTP id m9RGYZiL013087; Mon, 27 Oct 2008 17:34:35 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.2/Submit) with ESMTP id m9RGYYE4013084; Mon, 27 Oct 2008 17:34:35 +0100 (CET) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 27 Oct 2008 17:34:34 +0100 (CET) From: Wojciech Puchar To: Odhiambo Washington In-Reply-To: <991123400810270504k745fe683mbca2f58e268ce8fd@mail.gmail.com> Message-ID: <20081027173311.H13073@wojtek.tensor.gdynia.pl> References: <991123400810270504k745fe683mbca2f58e268ce8fd@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: User Questions Subject: Re: DHCP and MAC addresses 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: Mon, 27 Oct 2008 16:34:45 -0000 > Hello List, > > Suppose I have 100 Desktops, and I want my DHCP server to _only_ > assign IP addresses to these hosts, using MAC addresses, is there a > way to tell the DHCP server to NOT assign any IP address to a machine > whose MAC address it doesn't know? of course. and you can assign IP to each MAC first deny unknown-clients; (dont specify range at all) then host something { hardware ethernet 00:11:22:33:44:55; fixed-address 1.2.3.4; option host-name "something.somewhere"; option routers router_IP; }