aboutsummaryrefslogtreecommitdiffstats
path: root/ddns.cfg
blob: 8e6fe1c4986ba99fc8577096e0c37b5f722ef46c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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