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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user