From owner-freebsd-questions@FreeBSD.ORG Mon Apr 26 19:02:54 2004 Return-Path: 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 A31DA16A4CF for ; Mon, 26 Apr 2004 19:02:54 -0700 (PDT) Received: from auk1.snu.ac.kr (auk1.snu.ac.kr [147.46.100.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33D9A43D5A for ; Mon, 26 Apr 2004 19:02:54 -0700 (PDT) (envelope-from nospam@users.sourceforge.net) Received: from [147.46.44.181] (nospam@users.sourceforge.net) by auk1.snu.ac.kr (Terrace Internet Messaging Server) with ESMTP id 2004042710:52:51:886028.23420.2889841584 for ; Tue, 27 Apr 2004 10:52:51 +0900 (KST) Message-ID: <408DBF4D.1000900@users.sourceforge.net> Date: Tue, 27 Apr 2004 11:02:53 +0900 From: Rob User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040315 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-TERRACE-SPAMMARK: NO (SR:1.65) (by Terrace) Subject: dhcpd-client floods /var/log/messages. Can I stop this? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Apr 2004 02:02:54 -0000 Hi, I have a PC that gets its internet via dhcp-client. Eventually this will connect to my ISP, but for now it is served by a dhcpd-server on another FreeBSD PC of mine. On the server, /usr/local/etc/dhcpd.conf is configured as: authoritative; ddns-update-style ad-hoc; subnet 10.0.0.0 netmask 255.255.255.0 { range 10.0.0.2 10.0.0.254; option routers 10.0.0.1; option broadcast-address 10.0.0.255; option subnet-mask 255.255.255.0; option domain-name "thuis.domein"; option domain-name-servers ercc.snu.ac.kr, erccw1.snu.ac.kr; default-lease-time 600; max-lease-time 7200; } When I go to the client PC (10.0.0.254) and check its /var/log/messages file, it is flooded with lines like this: [...] Apr 27 10:28:21 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:28:21 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:33:14 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:33:14 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:37:57 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:37:57 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:42:28 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:42:28 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:46:24 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:46:24 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:51:11 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:51:11 router dhclient: New Broadcast Address: 10.0.0.255 Apr 27 10:54:58 router dhclient: New Network Number: 10.0.0.0 Apr 27 10:54:58 router dhclient: New Broadcast Address: 10.0.0.255 I don't need all these lines in my messages file; it actually obscures other relevant information in here. What can I do to dhclient to not do this? Thanks, Rob.