From owner-freebsd-questions Wed Dec 12 1:17:10 2001 Delivered-To: freebsd-questions@freebsd.org Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 23C4C37B419 for ; Wed, 12 Dec 2001 01:17:03 -0800 (PST) Received: from there ([80.4.125.7]) by mta02-svc.ntlworld.com (InterMail vM.4.01.03.23 201-229-121-123-20010418) with SMTP id <20011212091702.SYPG2135.mta02-svc.ntlworld.com@there> for ; Wed, 12 Dec 2001 09:17:02 +0000 Content-Type: text/plain; charset="iso-8859-1" From: Mike D To: questions@freebsd.org Subject: dhcpd problem Date: Wed, 12 Dec 2001 09:16:45 +0000 X-Mailer: KMail [version 1.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <20011212091702.SYPG2135.mta02-svc.ntlworld.com@there> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I'm getting these messages whilst dhcpd is running: dhcpd: if IN A host.domain rrset doesn't exist add 1800 IN A host.domain 192.10.10.71: timed out. Here is the startup script: ------------------script start ----------------- OPTIONS="" IFACES="" if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then echo "$0: Cannot determine the PREFIX" >&2 exit 1 fi case "$1" in start) ${PREFIX}/sbin/dhcpd -q $OPTIONS $IFACES > /dev/null 2>&1 echo -n ' dhcpd -q' ;; stop) killall dhcpd ;; restart) $0 stop $0 start ;; status) ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" ;; *) echo "usage: ${0##*/} {start|stop|restart|status}" >&2 ;; esac exit 0 ------------------script end ----------------- As you can see I start dhcpd with -q, so shouldn't these messages be logged instead or something? Thanks for any help!! Mike D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message