]> granicus.if.org Git - pdns/commitdiff
Recursor: disable dnssec in the default config
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 8 Mar 2016 20:06:27 +0000 (21:06 +0100)
committerPieter Lexis <pieter.lexis@powerdns.com>
Wed, 9 Mar 2016 15:13:20 +0000 (16:13 +0100)
This will be set to process after the dnssec implementation is more
bug-free.

docs/markdown/recursor/settings.md
pdns/pdns_recursor.cc

index 51e4b5ed7a65b43263874b918e430fe90a654868..0b573a55fd2de74aeb94e3cab73433c6be32d9ad 100644 (file)
@@ -169,7 +169,7 @@ cached.
 
 ## `dnssec`
 * One of `off`, `process`, `log-fail`, `validate`, String
-* Default: `process`
+* Default: `off` (**note**: was `process` until 4.0.0-alpha2)
 * Available since: 4.0.0
 
 Set the mode for DNSSEC processing:
index 929d54209d2337bf4fc8d6565d1c3e84d506c90b..ccc45a1690a743cee9ec4df1d41845030184f2ef 100644 (file)
@@ -2624,7 +2624,7 @@ int main(int argc, char **argv)
     ::arg().set("local-address","IP addresses to listen on, separated by spaces or commas. Also accepts ports.")="127.0.0.1";
     ::arg().setSwitch("non-local-bind", "Enable binding to non-local addresses by using FREEBIND / BINDANY socket options")="no";
     ::arg().set("trace","if we should output heaps of logging. set to 'fail' to only log failing domains")="off";
-    ::arg().set("dnssec", "DNSSEC mode: off/process (default)/log-fail/validate")="process";
+    ::arg().set("dnssec", "DNSSEC mode: off (default)/process/log-fail/validate")="off";
     ::arg().set("daemon","Operate as a daemon")="no";
     ::arg().setSwitch("write-pid","Write a PID file")="yes";
     ::arg().set("loglevel","Amount of logging. Higher is more. Do not set below 3")="4";