21 lines
439 B
Plaintext
21 lines
439 B
Plaintext
//
|
|
// Do any local configuration here
|
|
//
|
|
|
|
// Consider adding the 1918 zones here, if they are not used in your
|
|
// organization
|
|
//include "/etc/bind/zones.rfc1918";
|
|
|
|
|
|
zone "example.com" {
|
|
type master;
|
|
file "/var/bind/zones/db.example.com";
|
|
allow-query { any; };
|
|
allow-transfer { 192.168.1.1; };
|
|
also-notify { 192.168.1.1; };
|
|
inline-signing yes;
|
|
dnssec-policy "algo13";
|
|
key-directory "/etc/bind/keys";
|
|
};
|
|
|