Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Nov 2001 13:18:07 -0500
From:      "RAD2921 - RADIGAN, TIMOTHY               " <RAD2921@cup.edu>
To:        <freebsd-questions@freebsd.org>
Subject:   dhcpd and DNS
Message-ID:  <E15296A58B2AD411A30F00508BCF3EA20233FF25@1cal-exch2.cup.edu>

next in thread | raw e-mail | index | archive | help
Ok, I have a problem when I renew a lease from a Win98 machine.  I think
this is the sole cause of my Samba problems so I won't bother asking
about Samba.  But here is the error message I get (it gets repeated 3
times on the console):

NOV  6 13:06:31 home dhcpd: delete IN PTR 100.1.168.192.in-addr.arpa.
add 302400 IN PTR 100.1.168.192.in-addr.arpa.
NR-WRK98-02.home.newrevolutions.net: timed out.

Here is my dhcpd.conf file in /etc (I've tried changing the host name to
newrevolutions.net also and came up with the same error):

#
# $ID: dhcpd.conf,v 1.1 2001/10/29 01:07:32 root Exp $
#
option domain-name "home.newrevolutions.net";
option domain-name-servers 192.168.1.1;
option subnet-mask 255.255.255.0;
default-lease-time 604800;
max-lease-time 604800;
ddns-update-style ad-hoc;
=20
subnet 192.168.1.0 netmask 255.255.255.0
{
  range 192.168.1.100 192.168.1.254;
  option routers 192.168.1.1;
}

Here are my DNS files:

named.conf-

options {
        directory "/etc/namedb";
};
=20
zone "." in {
        type master;
        file "db.root";
};
=20
zone "newrevolutions.net" in {
        type master;
        file "db.newrevolutions";
        allow-update { 192.168.1.1; };
};
=20
zone "1.168.192.in-addr.arpa" in {
        type master;
        file "db.1.168.192";
};

zone "0.0.127.in-addr.arpa" in {
        type master;
        file "db.127.0.0";
};                      =20

db.newrevolutions-

@       IN SOA home.newrevolutions.net. tradigan.newrevolutions.net. (
                1       ; Serial
                10800   ; Refresh
                3600    ; Retry
                604800  ; Expire
                86400 ) ; Minimum TTL
=20
        IN NS home.newrevolutions.net.
=20
localhost       IN A 127.0.0.1
home            IN A 192.168.1.1
=20
ftp             IN CNAME home
www             IN CNAME home

I have the DNS and BIND book from O'Reilly and even after reading it I
still can't seem to get DNS and DHCP to work properly together.  Any
help would be appreciated.

Thanks.

Tim Radigan

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?E15296A58B2AD411A30F00508BCF3EA20233FF25>