2021-06-03 08:37:05 +02:00
|
|
|
.. Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2019-03-31 12:49:47 +02:00
|
|
|
..
|
2021-06-03 08:37:05 +02:00
|
|
|
.. SPDX-License-Identifier: MPL-2.0
|
|
|
|
..
|
|
|
|
.. 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 https://mozilla.org/MPL/2.0/.
|
|
|
|
..
|
|
|
|
.. See the COPYRIGHT file distributed with this work for additional
|
|
|
|
.. information regarding copyright ownership.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
|
|
|
.. highlight: console
|
|
|
|
|
2022-03-02 16:36:34 +01:00
|
|
|
.. program:: dnssec-revoke
|
2019-03-31 12:49:47 +02:00
|
|
|
.. _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
|
|
|
|
~~~~~~~
|
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -h
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option emits a usage message and exits.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -K directory
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option sets the directory in which the key files are to reside.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -r
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option indicates to remove the original keyset files after writing the new keyset files.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -v level
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option sets the debugging level.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -V
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option prints version information.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -E engine
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option specifies the cryptographic hardware to use, when applicable.
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2021-01-18 08:57:52 +01:00
|
|
|
When BIND 9 is built with OpenSSL, this needs to be set to the OpenSSL
|
|
|
|
engine identifier that drives the cryptographic accelerator or
|
2021-05-20 16:26:53 +02:00
|
|
|
hardware service module (usually ``pkcs11``).
|
2019-03-31 12:49:47 +02:00
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -f
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option indicates a forced overwrite and causes ``dnssec-revoke`` to write the new key pair,
|
2019-03-31 12:49:47 +02:00
|
|
|
even if a file already exists matching the algorithm and key ID of
|
|
|
|
the revoked key.
|
|
|
|
|
2022-03-02 15:12:17 +01:00
|
|
|
.. option:: -R
|
|
|
|
|
2020-06-03 20:01:17 +00:00
|
|
|
This option prints the key tag of the key with the REVOKE bit set, but does not
|
2019-03-31 12:49:47 +02:00
|
|
|
revoke the key.
|
|
|
|
|
|
|
|
See Also
|
|
|
|
~~~~~~~~
|
|
|
|
|
|
|
|
:manpage:`dnssec-keygen(8)`, BIND 9 Administrator Reference Manual, :rfc:`5011`.
|