mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
Fix missing iterations value in dnssec-guide
In the "Migrating from NSEC to NSEC3" section, it says:
dnssec-policy "standard" {
nsec3param iterations optout no salt-length 16;
};
There should be an integer after "iterations". Based on the following
text, the number of iterations should be 10.
This commit is contained in:
parent
c3689e6d2c
commit
9e109191cc
1 changed files with 1 additions and 1 deletions
|
|
@ -800,7 +800,7 @@ DNSSEC policy, using 10 iterations, no opt-out, and a random string that is
|
|||
::
|
||||
|
||||
dnssec-policy "standard" {
|
||||
nsec3param iterations optout no salt-length 16;
|
||||
nsec3param iterations 10 optout no salt-length 16;
|
||||
};
|
||||
|
||||
Then reconfigure the server with ``rndc``. You can tell that it worked if you
|
||||
|
|
|
|||
Loading…
Reference in a new issue