aboutsummaryrefslogtreecommitdiffstats
path: root/ddns.cfg
diff options
context:
space:
mode:
authorMarius Halden <marius.h@lden.org>2014-03-17 04:16:49 +0100
committerMarius Halden <marius.h@lden.org>2014-03-17 04:16:49 +0100
commit7c575aaa8e98a6aa7eda8d69e2b14d014ee91b09 (patch)
tree7bd082fd216e1577440cf1ea599467993c2fef36 /ddns.cfg
downloadDDNS.py-7c575aaa8e98a6aa7eda8d69e2b14d014ee91b09.tar.gz
DDNS.py-7c575aaa8e98a6aa7eda8d69e2b14d014ee91b09.tar.bz2
DDNS.py-7c575aaa8e98a6aa7eda8d69e2b14d014ee91b09.tar.xz
Initial commit
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