37 lines
754 B
Plaintext
Executable File
37 lines
754 B
Plaintext
Executable File
options {
|
|
|
|
directory "/var/lib/bind";
|
|
dump-file "/var/log/named_dump.db";
|
|
statistics-file "/var/log/named.stats";
|
|
notify yes;
|
|
};
|
|
|
|
zone "thelinuxpro.net" in {
|
|
type master;
|
|
file "/var/lib/bind/db.thelinuxpro.net";
|
|
allow-transfer { 10.99.153.242; };
|
|
also-notify { 10.99.153.242; };
|
|
};
|
|
|
|
zone "in.thelinuxpro.net" in {
|
|
type master;
|
|
file "/var/lib/bind/db.in.thelinuxpro.net";
|
|
allow-transfer { 10.99.153.242; };
|
|
also-notify { 10.99.153.242; };
|
|
};
|
|
|
|
zone "200.10.in-addr.arpa" in {
|
|
type master;
|
|
file "db.10.200";
|
|
};
|
|
|
|
zone "99.10.in-addr.arpa" in {
|
|
type master;
|
|
file "db.10.99";
|
|
};
|
|
|
|
zone "0.0.127.in-addr.arpa" in {
|
|
type master;
|
|
file "db.127";
|
|
};
|