From owner-freebsd-questions@FreeBSD.ORG Mon Jun 9 08:41:56 2003 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 B4E4A37B404 for ; Mon, 9 Jun 2003 08:41:56 -0700 (PDT) Received: from fallback-mx4.atl.registeredsite.com (fallback-mx4.atl.registeredsite.com [64.224.219.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D47543FE0 for ; Mon, 9 Jun 2003 08:40:35 -0700 (PDT) (envelope-from tradigan@touchdynamic.com) Received: from mail10.atl.registeredsite.com (mail10.atl.registeredsite.com [64.224.219.84])h59FEtMn019522 for ; Mon, 9 Jun 2003 11:14:55 -0400 Received: from mail8.burlee.com (mail.alexwoo.com [66.36.96.31]) h59FCodP030740 for ; Mon, 9 Jun 2003 11:12:51 -0400 Received: from touchdynamic.com [66.36.96.31] by mail8.burlee.com with ESMTP (SMTPD32-6.06) id A3B6686008C; Mon, 09 Jun 2003 11:11:50 -0400 Message-ID: <3EE4A3F0.7040804@touchdynamic.com> Date: Mon, 09 Jun 2003 11:12:48 -0400 From: Tim Radigan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 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 Subject: Dynamic DNS Updates 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: Mon, 09 Jun 2003 15:41:57 -0000 Hey peoples, Have a quick question for anyone who is up for it. Trying to use DHCP to issue Dynamic DNS Updates for my "internal" zone. I keep getting the following error message on the console: Jun 9 11:00:39 ns2 dhcpd: unable to add reverse map from 243.1.168.192.in-addr.arpa. to td-webdesign.touchdynamic.com: timed out I get that for each client on my internal network. Below are my named.conf and dhcpd.conf files edited to remove actual IP's however the configuration should be the only thing that matters. If anyone has any ideas, please let me know. -------------------------------------------- named.conf -------------------------------------------------------- options { directory "/etc/namedb"; query-source address * port 53; listen-on { address.to.external.interface; }; forwarders { address.to.forwarders; }; }; logging { channel update_debug { file "/var/log/update-debug.log"; severity debug 3; print-category yes; print-severity yes; print-time yes; }; channel security_info { file "/var/log/named-auth.info"; severity info; print-category yes; print-severity yes; print-time yes; }; category update { update_debug; }; category security { security_info; }; }; acl "td-internal" { 127/8; 192.168.1/24; }; acl "name-servers" { address.to.nameserver.1; address.to.nameserver.2; }; key "td-dnsadmin" { algorithm hmac-md5; secret "secret key"; }; key ns1-ns2.touchdynamic.com. { algorithm hmac-md5; secret "secret key"; }; controls { inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { "td-dnsadmin"; }; }; server address.to.nameserver.1 { keys { ns1-ns2.touchdynamic.com.; }; }; server address.to.nameserver.2 { keys { ns1-ns2.touchdynamic.com.; }; }; view "internal" { match-clients { "td-internal"; }; recursion yes; notify yes; zone "touchdynamic.com" { type master; file "internal/int.touchdynamic.com"; allow-update { key ns1-ns2.touchdynamic.com.; }; allow-transfer { "name-servers"; }; }; zone "." { type hint; file "named.root"; }; zone "0.0.127.IN-ADDR.ARPA" { type master; file "localhost.rev"; }; zone "1.168.192.IN-ADDR.ARPA" { type master; file "internal/192.168.1.rev"; allow-update { key ns1-ns2.touchdynamic.com.; }; allow-transfer { "name-servers"; }; }; }; view "external" { match-clients { any; }; recursion no; notify no; zone "touchdynamic.com" { type slave; file "external/ext.touchdynamic.bak"; masters { address.to.master; }; }; zone "." { type hint; file "named.root"; }; zone "xx.xx.xx.IN-ADDR.ARPA" { type slave; file "external/xx.xx.xx.bak"; masters { address.to.master; }; }; zone "xx.xx.xx.IN-ADDR.ARPA" { type slave; file "external/xx.xx.xx.bak"; masters { address.to.master; }; }; }; -------------------------------------------- named.conf -------------------------------------------------------- -------------------------------------------- dhcpd.conf -------------------------------------------------------- option domain-name "touchdynamic.com"; option domain-name-servers xx.xx.xx.xx, xx.xx.xx.xx; option routers 192.168.1.1; default-lease-time 43200; max-lease-time 86400; authoritative; key ns1-ns2.touchdynamic.com. { algorithm hmac-md5; secret secret key; }; zone touchdynamic.com. { primary 127.0.0.1; key ns1-ns2.touchdynamic.com.; } zone 1.168.192.in-addr.arpa. { primary 127.0.0.1; key ns1-ns2.touchdynamic.com.; } ddns-update-style interim; ddns-domainname "touchdynamic.com."; ddns-rev-domainname "in-addr.arpa."; log-facility local7; host td-termsrvr { hardware ethernet 00:E0:02:02:06:5A; fixed-address 192.168.1.3; } host home { hardware ethernet 00:50:fc:4b:ea:cb; fixed-address 192.168.1.2; } subnet 192.168.1.0 netmask 255.255.255.0 { option broadcast-address 192.168.1.255; range 192.168.1.10 192.168.1.245; } -------------------------------------------- dhcpd.conf -------------------------------------------------------- -- Tim Radigan - tradigan@touchdynamic.com Director of Information Technology Touch Dynamic, Inc. 888.508.6824 http://www.touchdynamic.com