PEWUG::DNS-Slave
From WugWiki
This is so we can use .jawug and .ptawug dns names in our urls. .pewug tld needs to be done at some point
$ cat /etc/bind/named.conf.jawug
//
// JAWUG DNS zone file
//
zone "jawug" {
type slave;
file "/var/cache/bind/db.jawug.forward";
masters {
172.16.1.1;
};
};
zone "16.172.in-addr.arpa" {
type slave;
file "/var/cache/bind/db.jawug.ptr";
masters {
172.16.1.1;
};
};
$ cat /etc/bind/named.conf | tail -n 3
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.jawug";
include "/etc/bind/named.conf.ptawug";
# rndc reconfig
