Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Dec 2001 09:16:45 +0000
From:      Mike D <d01f1n@yahoo.com>
To:        questions@freebsd.org
Subject:   dhcpd problem
Message-ID:  <20011212091702.SYPG2135.mta02-svc.ntlworld.com@there>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011212091702.SYPG2135.mta02-svc.ntlworld.com>