From owner-freebsd-questions Tue Nov 6 10:18:11 2001 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 58B4437B41A for ; Tue, 6 Nov 2001 10:18:08 -0800 (PST) X-MimeOLE: Produced By Microsoft Exchange V6.0.4712.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Subject: dhcpd and DNS Date: Tue, 6 Nov 2001 13:18:07 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: dhcpd and DNS Thread-Index: AcFm72H3iywe/OklQ8eaV0tidYaSqg== From: "RAD2921 - RADIGAN, TIMOTHY " To: 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 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