aboutsummaryrefslogtreecommitdiffstats
path: root/ddns.cfg
blob: 07b3b7c924bb79851c383d3b2573431f61e3af13 (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
# vim: ai ts=2 sts=2 sw=2 et

users:
  - username: admin
    password: password
    hash: None
  - username: user1
    password: password
    hash: None

dnskeys:
  - name: test-key
    key: key
    algorithm: HMAC-MD5

zones:
  - name: test.example.org.
    ns: ns.example.org
    key: test-key
    domains:
      - domain: host1 # host1.test.example.org
        users:
          - admin
      - domain: host2 # host2.test.example.org
        users:
          - admin
          - user1