]> git.evergreen-ils.org Git - contrib/pines/genasys.git/blob - templates/lvs/bind/named.conf.local-slave_DMZ
add Apache mutex-file configuration
[contrib/pines/genasys.git] / templates / lvs / bind / named.conf.local-slave_DMZ
1 //
2 // Do any local configuration here
3 //
4
5 // Consider adding the 1918 zones here, if they are not used in your
6 // organization
7 //include "/etc/bind/zones.rfc1918";
8
9 zone "domain.org" {
10         type slave;
11         masters { _LVS01_PRIVATE_IP; };
12         file "/etc/bind/domain.org-zone";
13         // allow-update { key "rndc-key"; Priv_NET.0/24; };
14         allow-transfer {
15                 127.0.0.1;
16                 _MY_IP;
17                 };
18         notify yes;
19 };
20
21 zone "_REV_PRIVATE_NET.in-addr.arpa" {
22         type slave;
23         masters { _LVS01_PRIVATE_IP; };
24         file "/etc/bind/Priv_NET-zone";
25         //allow-update { key "rndc-key"; Priv_NET.0/24; };
26         allow-transfer {
27                 127.0.0.1;
28                 _MY_IP;
29                 };
30         notify yes;
31 };
32
33 zone "_REV_DMZ_NET.in-addr.arpa" {
34         type slave;
35         masters { _LVS01_PRIVATE_IP; };
36         file "/etc/bind/Priv_NET-zone";
37         //allow-update { key "rndc-key"; DMZ_NET.0/24; };
38         allow-transfer {
39                 127.0.0.1;
40                 _MY_IP;
41                 };
42         notify yes;
43 };