mirror of https://github.com/Icinga/icinga2.git
Added the `--dane` option to the command definition ssl_cert (#10196)
This commit is contained in:
parent
c5963712fa
commit
920ba0b2db
|
@ -5944,6 +5944,7 @@ ssl_cert_ignore_ocsp_errors | **Optional.** Continue if the OCSP status cannot
|
||||||
ssl_cert_ignore_ocsp_timeout | **Optional.** Ignore OCSP result when timeout occurs while checking.
|
ssl_cert_ignore_ocsp_timeout | **Optional.** Ignore OCSP result when timeout occurs while checking.
|
||||||
ssl_cert_ignore_sct | **Optional.** Do not check for signed certificate timestamps.
|
ssl_cert_ignore_sct | **Optional.** Do not check for signed certificate timestamps.
|
||||||
ssl_cert_ignore_tls_renegotiation | **Optional.** Do not check for renegotiation.
|
ssl_cert_ignore_tls_renegotiation | **Optional.** Do not check for renegotiation.
|
||||||
|
ssl_cert_dane | **Optional.** Verify that valid DANE records exist ({211,301,302,311,312} or empty string).
|
||||||
|
|
||||||
|
|
||||||
#### jmx4perl <a id="plugin-contrib-command-jmx4perl"></a>
|
#### jmx4perl <a id="plugin-contrib-command-jmx4perl"></a>
|
||||||
|
|
|
@ -582,6 +582,11 @@ object CheckCommand "ssl_cert" {
|
||||||
value = "$ssl_cert_maximum_validity$"
|
value = "$ssl_cert_maximum_validity$"
|
||||||
description = "The maximum validity of the certificate in days (default: 397)"
|
description = "The maximum validity of the certificate in days (default: 397)"
|
||||||
}
|
}
|
||||||
|
"--dane" = {
|
||||||
|
value = "$ssl_cert_dane$"
|
||||||
|
description = "verify that valid DANE records exist (since OpenSSL 1.1.0)"
|
||||||
|
repeat_key = false
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue