// // Do any local configuration here // // Consider adding the 1918 zones here, if they are not used in your // organization //include "/etc/bind/zones.rfc1918"; // Forward Zone Info zone "wireguard.lan" IN { //Domain name type master; //primary dns file "/etc/bind/forward.wireguard.lan.db"; //forward lookup file allow-update { none; }; //this is the primary DNS, so no update should be needed. }; // Reverse Zone Info zone "79.16.172.in-addr.arpa" IN { //Reverse lookup name, should match namespace for wg0 type master; //primary dns file "/etc/bind/db.79.16.172"; //reverse lookup file allow-update { none; }; //this is the primary DNS, so no update should be needed. }; //blocks domains via bind using the IT-Dan tutorial include "/etc/bind/named.conf.blocked";