From owner-freebsd-questions@FreeBSD.ORG Fri Jul 8 09:47:26 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 E070016A41C for ; Fri, 8 Jul 2005 09:47:25 +0000 (GMT) (envelope-from glenn@antimatter.net) Received: from cobalt.antimatter.net (cobalt.antimatter.net [69.55.224.239]) by mx1.FreeBSD.org (Postfix) with ESMTP id A247C43D4C for ; Fri, 8 Jul 2005 09:47:25 +0000 (GMT) (envelope-from glenn@antimatter.net) Received: from glenn-mobile.antimatter.net (cpe-66-27-86-22.san.res.rr.com [66.27.86.22]) (authenticated bits=0) by cobalt.antimatter.net (8.13.4/8.13.4) with ESMTP id j689lNkc012620 (version=TLSv1/SSLv3 cipher=DES-CBC3-SHA bits=168 verify=NO); Fri, 8 Jul 2005 02:47:24 -0700 Message-Id: <6.1.0.6.2.20050708023802.1c972a50@cobalt.antimatter.net> X-Sender: lists@cobalt.antimatter.net X-Mailer: QUALCOMM Windows Eudora Version 6.1.0.6 Date: Fri, 08 Jul 2005 02:44:28 -0700 To: "thai nguyen" , From: Glenn Dawson In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: Subject: Re: dhcpd.conf problem 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: Fri, 08 Jul 2005 09:47:26 -0000 At 01:16 AM 7/8/2005, thai nguyen wrote: >Hi, > >We configured a dhcpd.conf as following. > >------------------------------------------------------------------------ >----------------------------------------- > >ddns-update-style interim; > >ignore client-updates; > > > >option space PXE; > >option PXE.mtftp-ip code 1 = ip-address; > >option PXE.mtftp-cport code 2 = unsigned integer 16; > >option PXE.mtftp-sport code 3 = unsigned integer 16; > >option PXE.mtftp-tmout code 4 = unsigned integer 8; > >option PXE.mtftp-delay code 5 = unsigned integer 8; > >option PXE.discovery-control code 6 = unsigned integer 8; > >option PXE.discovery-mcast-addr code 7 = ip-address; > > > >subnet 172.29.140.0 netmask 255.255.255.0 { > > option routers 172.29.140.1; > > option subnet-mask 255.255.255.0; > > option nis-domain "rvc.renesas.com"; > > option domain-name "rvc.renesas.com"; > > option domain-name-servers 172.29.138.20; > > > > > > host rvc-wstest { > > next-server 172.29.140.162; > > hardware ethernet 00:50:8b:fb:ea:5e; > > fixed-address 172.29.140.163; > > } > > host rvc-wstest1 { > > next-server 172.29.140.162; > > hardware ethernet 00:11:25:37:1B:CD; > > fixed-address 172.29.140.163; > > } > > host rvc-ws034 { > > next-server 172.29.140.162; > > hardware ethernet 00:11:25:4B:06:B0; > > fixed-address 172.29.140.163; > > } > > host rvc-wsIBM { > > next-server 172.29.141.10; > > hardware ethernet 00:11:25:4D:95:26; > > fixed-address 172.29.141.100; > > } > > } > > host rvc-wscompaq { > > next-server 172.29.141.10; > > hardware ethernet 00:02:A5:02:D3:48; > > fixed-address 172.29.141.154; > >} > >allow booting; > >allow bootp; > >class "pxeclients" { > > match if substring (option vendor-class-identifier, 0, 9) = >"PXEClient"; > > next-server 172.29.141.10; > > filename "linux-install/pxelinux.0"; > >------------------------------------------------------------------------ >----------------------------------------- > >The service dhcpd runs but the client is not received the ip add. > >So what is the problem? Could you pls reply me as soon as possible. Unless part of the config file wasn't sent properly, it looks like you have one extra right brace just before "host rvc-wscompaq", and there's one missing after the section for pxeclients. -Glenn >Thank so much. > > > > > >Thai > >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"