tests: Add alpha13 dumped provision
[Samba/gebeck_regimport.git] / source4 / selftest / provisions / alpha13 / private / named.conf
blob4d41024397b102d72c39a2675c047d8e889a956d
1 # This file should be included in your main BIND configuration file
3 # For example with
4 # include "/home/mat/workspace/samba/alpha13/private/named.conf";
6 zone "alpha13.samba.corp." IN {
7         type master;
8         file "/home/mat/workspace/samba/alpha13/private/dns/alpha13.samba.corp.zone";
9         /*
10          * the list of principals and what they can change is created
11          * dynamically by Samba, based on the membership of the domain controllers
12          * group. The provision just creates this file as an empty file.
13          */
14         include "/home/mat/workspace/samba/alpha13/private/named.conf.update";
16         /* we need to use check-names ignore so _msdcs A records can be created */
17         check-names ignore;
20 # The reverse zone configuration is optional.  The following example assumes a
21 # subnet of 192.168.123.0/24:
24 zone "123.168.192.in-addr.arpa" in {
25         type master;
26         file "123.168.192.in-addr.arpa.zone";
27         update-policy {
28                 grant *.SAMBA.CORP wildcard *.123.168.192.in-addr.arpa. PTR;
29         };
33 # Note that the reverse zone file is not created during the provision process.
35 # The most recent BIND versions (9.5.0a5 or later) support secure GSS-TSIG
36 # updates.  If you are running an earlier version of BIND, or if you do not wish
37 # to use secure GSS-TSIG updates, you may remove the update-policy sections in
38 # both examples above.