The ARM and the manpages have been converted into Sphinx documentation
format.
Sphinx uses reStructuredText as its markup language, and many of its
strengths come from the power and straightforwardness of
reStructuredText and its parsing and translating suite, the Docutils.
(cherry picked from commit 9fb6d11abb)
82 lines
2.3 KiB
ReStructuredText
82 lines
2.3 KiB
ReStructuredText
..
|
|
Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
See the COPYRIGHT file distributed with this work for additional
|
|
information regarding copyright ownership.
|
|
|
|
..
|
|
Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
See the COPYRIGHT file distributed with this work for additional
|
|
information regarding copyright ownership.
|
|
|
|
|
|
.. highlight: console
|
|
|
|
.. _man_dnssec-revoke:
|
|
|
|
dnssec-revoke - set the REVOKED bit on a DNSSEC key
|
|
---------------------------------------------------
|
|
|
|
Synopsis
|
|
~~~~~~~~
|
|
|
|
:program:`dnssec-revoke` [**-hr**] [**-v** level] [**-V**] [**-K** directory] [**-E** engine] [**-f**] [**-R**] {keyfile}
|
|
|
|
Description
|
|
~~~~~~~~~~~
|
|
|
|
``dnssec-revoke`` reads a DNSSEC key file, sets the REVOKED bit on the
|
|
key as defined in :rfc:`5011`, and creates a new pair of key files
|
|
containing the now-revoked key.
|
|
|
|
Options
|
|
~~~~~~~
|
|
|
|
**-h**
|
|
Emit usage message and exit.
|
|
|
|
**-K** directory
|
|
Sets the directory in which the key files are to reside.
|
|
|
|
**-r**
|
|
After writing the new keyset files remove the original keyset files.
|
|
|
|
**-v** level
|
|
Sets the debugging level.
|
|
|
|
**-V**
|
|
Prints version information.
|
|
|
|
**-E** engine
|
|
Specifies the cryptographic hardware to use, when applicable.
|
|
|
|
When BIND is built with OpenSSL PKCS#11 support, this defaults to the
|
|
string "pkcs11", which identifies an OpenSSL engine that can drive a
|
|
cryptographic accelerator or hardware service module. When BIND is
|
|
built with native PKCS#11 cryptography (--enable-native-pkcs11), it
|
|
defaults to the path of the PKCS#11 provider library specified via
|
|
"--with-pkcs11".
|
|
|
|
**-f**
|
|
Force overwrite: Causes ``dnssec-revoke`` to write the new key pair
|
|
even if a file already exists matching the algorithm and key ID of
|
|
the revoked key.
|
|
|
|
**-R**
|
|
Print the key tag of the key with the REVOKE bit set but do not
|
|
revoke the key.
|
|
|
|
See Also
|
|
~~~~~~~~
|
|
|
|
:manpage:`dnssec-keygen(8)`, BIND 9 Administrator Reference Manual, :rfc:`5011`.
|