Received: from mx.ams1.isc.org (mx.ams1.isc.org [199.6.1.65]) by bugs.isc.org (Postfix) with ESMTP id 568D020EE275 for ; Sat, 1 Oct 2011 22:07:36 +0000 (UTC) Received: from mail.dragon.net (mail.dragon.net [IPv6:2001:4f8:3:36::235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx.ams1.isc.org (Postfix) with ESMTPS id E0B605F98D3 for ; Sat, 1 Oct 2011 22:07:21 +0000 (UTC) (envelope-from ebersman@pae.com) Received: from fafnir.remote.dragon.net (localhost [127.0.0.1]) by mail.dragon.net (Postfix) with ESMTP id 5D4C53740893 for ; Sat, 1 Oct 2011 15:07:19 -0700 (PDT) Received: by fafnir.remote.dragon.net (Postfix, from userid 501) id BE1059F85B4; Sat, 1 Oct 2011 15:07:18 -0700 (PDT) Received: from fafnir.remote.dragon.net (localhost [127.0.0.1]) by fafnir.remote.dragon.net (Postfix) with ESMTP id A3F7E9F85B0 for ; Sat, 1 Oct 2011 15:07:18 -0700 (PDT) Delivered-To: dhcp-bugs@bugs.isc.org Subject: dhcpd 4.2.2 puts temporary addresses in DNS X-Spam-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00, NORMAL_HTTP_TO_IP autolearn=ham version=3.3.1 Return-Path: X-Mailer: MH-E 7.4.2; nmh 1.3; XEmacs 21.4 (patch 22) X-Original-To: dhcp-bugs@bugs.isc.org Date: Sat, 01 Oct 2011 15:07:18 -0700 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mx.ams1.isc.org Message-ID: <20111001220718.BE1059F85B4@fafnir.remote.dragon.net> To: dhcp-bugs@isc.org From: ebersman@pae.com (Paul Ebersman) X-RT-Original-Encoding: ascii content-type: text/plain; charset="utf-8" Content-Length: 1222 When I request both permanent and temporary ipv6 addresses, I get both addresses but dhcpd does DDNS updates for both in the ip6.arpa zone. dhcpd should not be putting IA_TA addresses in DNS. dhcpd.conf file: ##### option domain-name "remote6.dragon.net"; option domain-name-servers 192.168.167.101; default-lease-time 3600; max-lease-time 7200; log-facility local7; update-static-leases on; authoritative; set vendor-string = option vendor-class-identifier; stash-agent-options true; ddns-update-style interim; ddns-updates on; ddns-domainname "remote6.dragon.net"; ddns-hostname = pick(option fqdn.hostname, option host-name, option dhcp6.fqdn, option fqdn.fqdn, concat("dyn-",binary-to-ascii(16,16,"-", substring(option dhcp6.ia-na, 16, 16)))); update-optimization false; key ddns-key { algorithm HMAC-MD5; secret "XXXX"; }; zone 4.9.2.0.8.3.9.1.1.0.0.2.ip6.arpa { primary ddns.dragon.net; key ddns-key; } zone remote6.dragon.net { primary ns1.dragon.net; key ddns-key; } subnet6 2001:1938:294::/64 { range6 2001:1938:294::200 2001:1938:294::250; range6 2001:1938:294:cafe::/64 temporary; } #####