]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/named.conf.parsertest
Merge pull request #14021 from Habbie/auth-lua-join-whitespace
[thirdparty/pdns.git] / pdns / named.conf.parsertest
CommitLineData
552ddf0c
PD
1# this file is used by ../pdns/test-bindparser_cc.cc
2# if you change it, please make check!
3
4options {
5 directory "./zones/";
6 recursion no;
7 listen-on port 5300 {
8 127.0.0.1;
9 };
10 version "Meow!Meow!";
11 minimal-responses yes;
12};
13zone "example.com"{
14 type master;
15 file "example.com";
16};
17
18zone "test.com"{
19 type slave;
20 file "test.com";
21 masters { 1.2.3.4:5678; };
22};
23
24zone "test.dyndns" {
25 type garblewarble;
26 file "test.dyndns";
27 allow-update {
28 127.0.0.0/8;
29 };
30};
31
32zone "wtest.com"{
e63e16c1 33 type primary;
552ddf0c
PD
34 file "wtest.com";
35};
36
37zone "nztest.com"{
e63e16c1 38 type secondary;
552ddf0c 39 file "nztest.com";
e63e16c1 40 primaries { 1.2.3.4:5678; };
552ddf0c
PD
41};
42
43zone "dnssec-parent.com"{
e63e16c1 44 type primary;
552ddf0c
PD
45 file "dnssec-parent.com";
46};
47
48zone "delegated.dnssec-parent.com"{
e63e16c1 49 type primary;
552ddf0c
PD
50 file "delegated.dnssec-parent.com";
51};
52
53zone "secure-delegated.dnssec-parent.com"{
e63e16c1 54 type primary;
552ddf0c
PD
55 file "secure-delegated.dnssec-parent.com";
56};
57
58zone "minimal.com"{
e63e16c1 59 type primary;
552ddf0c
PD
60 file "minimal.com";
61};
62
63zone "tsig.com"{
e63e16c1 64 type primary;
552ddf0c
PD
65 file "tsig.com";
66};
67
68zone "stest.com"{
e63e16c1 69 type primary;
552ddf0c
PD
70 file "stest.com";
71};