summaryrefslogtreecommitdiff
path: root/dnszones/README
blob: 708e9b0741f5b37615232b5ce2ec86ef4a4c5053 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
These are the zone files for the QDnsLookup test. The files are
self-contained, except for:
 - the SOA records in each file
 - the NS records for each file
   (note that there are NS for the sub-zones too)

To deploy these zones, add to named.conf:

zone "test.qt-project.org" IN {
     type master;
     file "test.ZONEINFO";
     allow-query { any; };
     allow-transfer { any; };
};

zone "xn--alqualond-34a.test.qt-project.org" IN {
     type master;
     file "test.ZONEINFO";
     allow-query { any; };
     allow-transfer { any; };
};

zone "ns-single.test.qt-project.org" IN {
     type master;
     file "ns-single.test.ZONEINFO";
     allow-query { any; };
};

zone "ns-multi.test.qt-project.org" IN {
     type master;
     file "ns-multi.test.ZONEINFO";
     allow-query { any; };
};

zone "ns-single.xn--alqualond-34a.test.qt-project.org" IN {
     type master;
     file "ns-single.test.ZONEINFO";
     allow-query { any; };
};

zone "ns-multi.xn--alqualond-34a.test.qt-project.org" IN {
     type master;
     file "ns-multi.test.ZONEINFO";
     allow-query { any; };
};