Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jan 2002 15:26:07 -0500
From:      "Timothy Radigan" <rad2921@cup.edu>
To:        <freebsd-questions@freebsd.org>
Subject:   Console Error Messages
Message-ID:  <004601c19ecc$095b4d20$9601a8c0@newrevolutions.net>

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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?004601c19ecc$095b4d20$9601a8c0>