aboutsummaryrefslogtreecommitdiffstats
path: root/ddns.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'ddns.cfg')
-rw-r--r--ddns.cfg30
1 files changed, 30 insertions, 0 deletions
diff --git a/ddns.cfg b/ddns.cfg
new file mode 100644
index 0000000..8e6fe1c
--- /dev/null
+++ b/ddns.cfg
@@ -0,0 +1,30 @@
+# vim: ai ts=2 sts=2 sw=2 et
+
+users:
+ - &user-admin
+ username: admin
+ password: password
+ hash: None
+ - &user-user1
+ username: user1
+ password: password
+ hash: None
+
+dnskeys:
+ - &dnskey-test-key
+ name: test-key
+ key: key
+ algorithm: HMAC-MD5
+
+zones:
+ - name: test.example.org.
+ ns: ns.example.org
+ key: *dnskey-test-key
+ domains:
+ - domain: host1 # host1.test.example.org
+ users:
+ - *user-admin
+ - domain: host2 # host2.test.example.org
+ users:
+ - *user-admin
+ - *user-user1