1logging { 2 channel basic { 3 file "named.run"; 4 severity debug 999; 5 print-time yes; 6 }; 7 category default { basic; }; 8}; 9key rndc_key { 10 secret "1234abcd8765"; 11 algorithm hmac-sha256; 12}; 13 14controls { 15 inet 10.53.0.3 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 16}; 17 18options { 19 query-source address 10.53.0.3; 20 notify-source 10.53.0.3; 21 transfer-source 10.53.0.3; 22 port @PORT@; 23 listen-on { 10.53.0.3; }; 24 pid-file "named.pid"; 25 notify no; 26 dnssec-validation no; 27 allow-query { any; }; 28 allow-recursion { any; }; 29}; 30 31zone "." { 32 type hint; 33 file "root.db"; 34}; 35