From bc20cf2988a2336614ac84880664ddffc0a9e601 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 19 Apr 2026 16:31:46 +0100 Subject: [PATCH] Add bind9vm/named.conf --- bind9vm/named.conf | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 bind9vm/named.conf diff --git a/bind9vm/named.conf b/bind9vm/named.conf new file mode 100644 index 0000000..e7bf4a8 --- /dev/null +++ b/bind9vm/named.conf @@ -0,0 +1,25 @@ +// +// Do any local configuration here +// + +// Consider adding the 1918 zones here, if they are not used in your +// organization +//include "/etc/bind/zones.rfc1918"; +acl internal { + 192.168.1.0/24; +}; + +options { + forwarders { + 192.168.1.254; + 8.8.8.8; + 8.8.4.4; + }; + allow-query { internal; }; +}; + +zone "johnsnexus.click" IN { + type slave; + file "/var/cache/bind/johnsnexus-click.zone"; sync copy of master + masters { 192.168.1.23; }; +}; \ No newline at end of file