]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[35-local-d2-dhcp-ddns-client-config] Updated kea6/with-ddns.json example
authorFrancis Dupont <fdupont@isc.org>
Thu, 10 Oct 2019 08:50:20 +0000 (10:50 +0200)
committerThomas Markwalder <tmark@isc.org>
Thu, 10 Oct 2019 12:36:39 +0000 (08:36 -0400)
doc/examples/kea6/with-ddns.json

index dc5232381659dba2bcaa795f6447de864acf2ebc..f87dfbb3c36abe567c52c0283c528ef5800aad48 100644 (file)
@@ -41,7 +41,8 @@
     }
   ],
 
-// Enable dynamic DNS updates
+// Enable connectivity with kea-dhcp-ddns
+// (Required for dynamic DNS updates)    
   "dhcp-ddns" : {
         "enable-updates" : true,
         "server-ip" : "3001::1",
         "sender-port" : 3433,
         "max-queue-size" : 2048,
         "ncr-protocol" : "UDP",
-        "ncr-format" : "JSON",
-        "override-no-update" : true,
-        "override-client-update" : true,
-        "replace-client-name" : "when-present",
-        "generated-prefix" : "test.prefix",
-        "qualifying-suffix" : "test.suffix.",
-        "hostname-char-set": "[^A-Za-z0-9.-]",
-        "hostname-char-replacement": "x"
+        "ncr-format" : "JSON"
   },
 
 
+// Enable DDNS updates and configure DDNS update behavior
+  "ddns-send-updates" : true,
+  "ddns-override-no-update" : true,
+  "ddns-override-client-update" : true,
+  "ddns-replace-client-name" : "when-present",
+  "ddns-generated-prefix" : "test.prefix",
+  "ddns-qualifying-suffix" : "test.suffix.",
+  "hostname-char-set": "[^A-Za-z0-9.-]",
+  "hostname-char-replacement": "x",
+
 // The following configures logging. It assumes that messages with at
 // least informational level (info, warn, error and fatal) should be
 // logged to stdout.