diff options
author | Matthew Lemon <y@yulqen.org> | 2024-03-04 16:25:23 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-03-04 16:25:23 +0000 |
commit | 704d827a2ca8af1d4767c2cbf8ee9cf54d5e5812 (patch) | |
tree | 9f24f902e4f1f5f6178abd41b4c7c74169e5bf66 /config/named.conf |
Initial commit
Diffstat (limited to 'config/named.conf')
-rw-r--r-- | config/named.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/named.conf b/config/named.conf new file mode 100644 index 0000000..0d429ef --- /dev/null +++ b/config/named.conf @@ -0,0 +1,15 @@ +acl internal { + 192.168.1.0/24; +}; + +options { + forwarders { + 8.8.8.8; + 1.1.1.1; + }; + allow-query { internal; }; +}; +zone "wark.yulqen.org" IN { + type master; + file "/etc/bind/wark.yulqen.org.zone"; +}; |