You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// this options block and the following logging block are based on the ones at https://bind9.readthedocs.io/en/latest/chapter3.html#primary-authoritative-name-server
9
+
options {
10
+
// all relative paths use this directory as a base
11
+
directory "/var";
12
+
// version statement for security to avoid hacking known weaknesses
13
+
// if the real version number is revealed
14
+
version "not currently available";
15
+
// This is the default - allows user queries from any IP
16
+
allow-query { any; };
17
+
// normal server operations may place items in the cache
18
+
// this prevents any user query from accessing these items
19
+
// only authoritative zone data will be returned
20
+
allow-query-cache { none; };
21
+
// Do not provide recursive service to user queries
22
+
recursion no;
23
+
};
24
+
25
+
// logging clause
26
+
// log to /var/log/named/example.log all events from info UP in severity (no debug)
27
+
// uses 3 files in rotation swaps files when size reaches 250K
28
+
// failure messages that occur before logging is established are
0 commit comments