mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 04:32:04 -04:00
Merge branch 'each-speedup-serve-stale-test' into 'master'
Speed up serve-stale test See merge request isc-projects/bind9!3090
This commit is contained in:
commit
d434ec89ce
4 changed files with 316 additions and 357 deletions
|
|
@ -160,7 +160,7 @@ command is one of the following:\n\
|
|||
scan Scan available network interfaces for changes.\n\
|
||||
secroots [view ...]\n\
|
||||
Write security roots to the secroots file.\n\
|
||||
serve-stale [ yes | no | reset | status ] [class [view]]\n\
|
||||
serve-stale [ on | off | reset | status ] [class [view]]\n\
|
||||
Control whether stale answers are returned\n\
|
||||
showzone zone [class [view]]\n\
|
||||
Print a zone's configuration.\n\
|
||||
|
|
@ -204,7 +204,7 @@ command is one of the following:\n\
|
|||
Delete a TKEY-negotiated TSIG key.\n\
|
||||
tsig-list List all currently active TSIG keys, including both statically\n\
|
||||
configured and TKEY-negotiated keys.\n\
|
||||
validation [ yes | no | status ] [view]\n\
|
||||
validation [ on | off | status ] [view]\n\
|
||||
Enable / disable DNSSEC validation.\n\
|
||||
zonestatus zone [class [view]]\n\
|
||||
Display the current status of a zone.\n\
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ options {
|
|||
max-stale-ttl 3600;
|
||||
stale-answer-ttl 2;
|
||||
stale-answer-enable yes;
|
||||
servfail-ttl 0;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
|
|
@ -27,9 +27,10 @@ options {
|
|||
listen-on { 10.53.0.1; };
|
||||
listen-on-v6 { none; };
|
||||
recursion yes;
|
||||
max-stale-ttl 45;
|
||||
max-stale-ttl 20;
|
||||
stale-answer-ttl 3;
|
||||
stale-answer-enable yes;
|
||||
servfail-ttl 0;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue