From 37daa80a8b52433ac52e40a47b8037a0149e361c Mon Sep 17 00:00:00 2001 From: 4Quarks <47900195+4quarks@users.noreply.github.com> Date: Fri, 24 May 2024 14:49:26 +0200 Subject: [PATCH] Comment some optional settings of the named.conf --- files/configuration/test_lab/named.conf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/files/configuration/test_lab/named.conf b/files/configuration/test_lab/named.conf index 3540062..edff90d 100644 --- a/files/configuration/test_lab/named.conf +++ b/files/configuration/test_lab/named.conf @@ -5,19 +5,19 @@ options { allow-query { any; }; recursion yes; allow-recursion { any; }; - forwarders { - IP_TO_FORWARDER; # i.e. 8.8.8.8 - }; +# forwarders { +# IP_TO_FORWARDER; # i.e. 8.8.8.8 +# }; dnssec-validation no; dnstap { all; }; dnstap-output file "/var/log/named/dnstap.log" size unlimited; response-policy { zone "rpz.local"; }; }; -zone "rpz.local" { - type master; - file "/var/named/zones/db.rpz"; -}; +#zone "rpz.local" { +# type master; +# file "/var/named/zones/db.rpz"; +#}; logging { channel update_debug { @@ -51,5 +51,5 @@ logging { category update { update_debug; }; category update-security { update_debug; }; category security { security_info; }; - category rpz { rpzlog; }; +# category rpz { rpzlog; }; };