migrate server scripts to python 3
[dyn-nsupdate.git] / dyn-ns-client.conf.dist
index 076287ca00480647c99f720d3e4dd1f9a1eaa146..5c13deee1cc4eb0766a33c96b0254eee7f24b359 100644 (file)
@@ -8,10 +8,11 @@ password = some_secure_password
 [IPv4]
 # Possible IPv4 detection methods are
 # none: Don't set IPv4 address (leaves the domain's A record untouched).
+# remove: Remove domain's A record if it exists.
 # web: Call a website to detect the current, external IPv4 address.
 method = web
 
-# The server to query for web-basd IPv4 detection (if enabled).
+# The server to query for web-based IPv4 detection (method = web).
 # Default: same as the global server in the default section.
 # This server should NOT have an AAAA record, or it may return the IPv6 address instead!
 server = ipv4.ns.example.com
@@ -19,12 +20,16 @@ server = ipv4.ns.example.com
 [IPv6]
 # Possible IPv6 detection methods are
 # none: Don't set IPv6 address (leaves the domain's AAAA record untouched).
+# remove: Remove domain's AAAA record if it exists.
 # web: Call a website to detect the current, external IPv6 address.
 # local: Try to detect the global IPv6 address based on the configuration of the local network interfaces.
 method = none
 
-# The server to query for web-basd IPv6 detection.
+# The server to query for web-based IPv6 detection (method = web).
 # Default: same as the global server in the default section.
 # This server should NOT have an A record, or it may return the IPv4 address instead!
 server = ipv6.ns.example.com
 
+# The network device of which to use the IPv6 address for local detection (method = local).
+# If left unset, pick any device.
+device = eth0