Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- NAMED.CONF.OPTIONS --
- options {
- directory "/var/cache/bind";
- forwarders {
- 10.10.10.2;
- };
- dnssec-validation auto;
- auth-nxdomain no; # conform to RFC1035
- listen-on-v6 { any; };
- allow-transfer { 10.10.10.67; };
- notify yes;
- };
- -- NAMED.CONF.LOCAL --
- //
- // 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 "10.10.10.in-addr.arpa" {
- type master;
- file "/etc/bind/zones/10.10.10.rev.db";
- };
- zone "dns.lan" {
- type master;
- file "/etc/bind/zones/kaps.dns.db";
- };
- zone "webstage.lan" {
- type master;
- file "/etc/bind/zones/kaps.webstage.db";
- };
- -- dns.lan.db --
- $TTL 38400
- dns.lan. IN SOA dns.lan. root.dns.lan. (201311070 10800 180 129600 38400)
- ns IN A 10.10.10.99
- @ IN NS ns.dns.lan.
- @ IN A 10.10.10.99
- -- webstage.lan.db --
- $TTL 38400
- webstage.lan. IN SOA ns.webstage.lan. root.webstage.kaps. (201311070 10800 180 1209600 38400)
- ns IN A 10.10.10.67
- @ IN NS ns.webstage.lan.
Advertisement
Add Comment
Please, Sign In to add comment