From owner-freebsd-questions@FreeBSD.ORG Mon Nov 2 16:16:59 2009 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 D58D21065676 for ; Mon, 2 Nov 2009 16:16:59 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-pw0-f44.google.com (mail-pw0-f44.google.com [209.85.160.44]) by mx1.freebsd.org (Postfix) with ESMTP id A489A8FC16 for ; Mon, 2 Nov 2009 16:16:59 +0000 (UTC) Received: by pwj8 with SMTP id 8so2087949pwj.3 for ; Mon, 02 Nov 2009 08:16:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=S3BCPPESfcBQ7GGhURwejotJphcs1yUFFyN0USesdS4=; b=N+fB6rHhK0iGrB2V5/O3NljkJ7xI4P4CH+Ypz79Jod05Mzpu+U6BmtlIFobl3SaWZo CGHqcwjBlnfgHjBYBebXqiFdLYftSipqtnVwbGpDRe+ejMrcM2aH6IzYkavqkD6yR45x 5Rkk6TdCUxRhhcQcEcGE7lxkk4ANkk2ZSmW8g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=CBiSukErLd8t6AaCzLl53psNLFMfFuzALPzWKBgwhiKmpFFPVSY9Ff9ef8G96KrqpS uCw6zmGaE39OcYrlA831VxB0iOEqZ66eD0mcj5EORhAfdwNkIu056pBtPissYTFvLfSJ zT2U/QUq/pP9Y9Q4PUB0527lTDnteyPzgNMlA= MIME-Version: 1.0 Received: by 10.115.81.21 with SMTP id i21mr8974165wal.125.1257178619243; Mon, 02 Nov 2009 08:16:59 -0800 (PST) In-Reply-To: <356499.59817.qm@web30803.mail.mud.yahoo.com> References: <82804.79685.qm@web30804.mail.mud.yahoo.com> <516971.12872.qm@web30807.mail.mud.yahoo.com> <806321.83601.qm@web30807.mail.mud.yahoo.com> <49594.91061.qm@web30806.mail.mud.yahoo.com> <479349.15334.qm@web30804.mail.mud.yahoo.com> <356499.59817.qm@web30803.mail.mud.yahoo.com> Date: Mon, 2 Nov 2009 09:16:58 -0700 Message-ID: From: Tim Judd To: =?ISO-8859-1?Q?D=E1nielisz_L=E1szl=F3?= Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: dhcpd related issue - not giving up 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, 02 Nov 2009 16:16:59 -0000 On 11/2/09, D=E1nielisz L=E1szl=F3 wrote: > I tried about 10 conf, here is the actual one: > > # cat /usr/local/etc/dhcpd.conf > authoritative; > ddns-update-style none; > > subnet 192.168.1.0 netmask 255.255.255.0 { > option routers 192.168.1.1; > > > pool { > option domain-name-servers cns01.hdsnet.hu; > max-lease-time 300; > range 192.168.1.200 192.168.1.253; > allow unknown-clients; > } > } It looks awkward... I don't recall ever seeing a pool inside a subnet declaration like this. A subnet declaration can use all the declaration in your pool. Pure curiousity, because I am not looking up the config syntax.. comment out (or delete) the pool { and } lines only. which bring the statements to the subnet clause. restart dhcpd, and retry IIRC, pools are only useful if you have two pool definitions. thanks... hope this works.