From owner-freebsd-questions Wed Jan 16 12:25:35 2002 Delivered-To: freebsd-questions@freebsd.org Received: from 1cal-exch2.cup.edu (1cal-exch2.cup.edu [158.83.1.34]) by hub.freebsd.org (Postfix) with ESMTP id 5A0E237B400 for ; Wed, 16 Jan 2002 12:25:28 -0800 (PST) Received: from nrwrk98xp01 ([204.171.188.87]) by 1cal-exch2.cup.edu with Microsoft SMTPSVC(5.0.2195.3779); Wed, 16 Jan 2002 15:25:21 -0500 Message-ID: <004601c19ecc$095b4d20$9601a8c0@newrevolutions.net> From: "Timothy Radigan" To: Subject: Console Error Messages Date: Wed, 16 Jan 2002 15:26:07 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-OriginalArrivalTime: 16 Jan 2002 20:25:21.0926 (UTC) FILETIME=[EC125A60:01C19ECB] 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 have some interesting console messages that appear quite frequently on my freebsd box and I am kind of wondering why they are appearing at all. Maybe someone can help me out here. The first one I'm getting is from my ethernet card: dc0: TX underrun -- increasing TX threshold If anyone has any ideas on why that message is appearing, it'd be helpful.. Other error messages I get are from named and dhcpd. Here is the one I keep getting from named: Jan 16 15:14:26 home named[115]: denied update from [192.168.1.150].1271 for "newrevolutions.net" IN And here is the one I get from dhcpd: Jan 16 12:14:24 home dhcpd: delete IN PTR 150.1.168.192.in-addr.arpa. add 42300 IN PTR 150.1.168.192.in-addr.arpa. nr-wrk98xp-01.newrevolutions.net: connection refused. I'm not sure why my dhcp server is giving those messages because it does assign IP's to the clients on the network. Now, the DNS server seemed to be ok at first, but now I keep getting those error messages. I will post my dhcpd.conf file below, but any help or a point in the right direction would be helpful. Thanks. Tim Radigan Here is my dhcpd.conf file: # # $ID: dhcpd.conf,v 1.1 2001/10/29 01:07:32 root Exp $ # option domain-name "newrevolutions.net"; option domain-name-servers 192.168.1.1; option subnet-mask 255.255.255.0; default-lease-time 84600; max-lease-time 84600; ddns-update-style interim; key DHCP_UPDATER { algorithm HMAC-MD5.SIG-ALG.REG.INT; secret pRP5FapFoJ95JEL06sv4PQ==; }; zone newrevolutions.net. { primary 192.168.1.1; key DHCP_UPDATER; } zone 1.168.192.in-addr.arpa. { primary 192.169.1.1; key DHCP_UPDATER; } subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.100 192.168.1.150; option routers 192.168.1.1; option domain-name-servers 192.168.1.1; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message