migrate server scripts to python 3
[dyn-nsupdate.git] / dyn-ns-client.conf.dist
1 # The server to send the update requests to
2 server = ns.example.com
3 # Domains to update (multiple domains are possible, separated by comma)
4 domains = test.dyn.example.com
5 # Password to be sent to the server-side scripts
6 password = some_secure_password
7
8 [IPv4]
9 # Possible IPv4 detection methods are
10 # none: Don't set IPv4 address (leaves the domain's A record untouched).
11 # remove: Remove domain's A record if it exists.
12 # web: Call a website to detect the current, external IPv4 address.
13 method = web
14
15 # The server to query for web-based IPv4 detection (method = web).
16 # Default: same as the global server in the default section.
17 # This server should NOT have an AAAA record, or it may return the IPv6 address instead!
18 server = ipv4.ns.example.com
19
20 [IPv6]
21 # Possible IPv6 detection methods are
22 # none: Don't set IPv6 address (leaves the domain's AAAA record untouched).
23 # remove: Remove domain's AAAA record if it exists.
24 # web: Call a website to detect the current, external IPv6 address.
25 # local: Try to detect the global IPv6 address based on the configuration of the local network interfaces.
26 method = none
27
28 # The server to query for web-based IPv6 detection (method = web).
29 # Default: same as the global server in the default section.
30 # This server should NOT have an A record, or it may return the IPv4 address instead!
31 server = ipv6.ns.example.com
32
33 # The network device of which to use the IPv6 address for local detection (method = local).
34 # If left unset, pick any device.
35 device = eth0