mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
To use PKI with nrpe, a CA must be specified and anonymous DH must be disabled. If client certificates are enforced by nrped, additionally a private cert and key must be specified. This patch adds all these parameters as well TLS configuration options to limit the TLS version and crypto parameters: nrpe_ca - The CA file to use for PKI. Defaults to none. nrpe_cert - The client cert file to use for PKI. Defaults to none. nrpe_key - The client key file to use for PKI. Defaults to none. nrpe_ssl_version - The SSL/TLS version to use. Defaults to TLSv1+. nrpe_cipher_list - The list of SSL ciphers to use. Default depends on check_nrpe version. nrpe_dh_opt - Anonymous Diffie Hellman use: 0 = deny, 1 = allow, 2 = force. Default depends on check_nrpe version.