From bf5c7e878691d5258691c1348ba6315f03ddb9c2 Mon Sep 17 00:00:00 2001 From: john Date: Mon, 26 Jan 2026 01:30:08 +0000 Subject: [PATCH] Add bind9/named.conf --- bind9/named.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 bind9/named.conf diff --git a/bind9/named.conf b/bind9/named.conf new file mode 100644 index 0000000..82ae58b --- /dev/null +++ b/bind9/named.conf @@ -0,0 +1,17 @@ +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 master; + file "/etc/bind/johnsnexus-click.zone"; # external site name +} \ No newline at end of file