Opsview Agent security

Opsview Monitor has the capability of a more secure method of communication between the Opsview Agent and its Unix clients. Previous versions were limited to using relatively weak ADH-based ciphers, but now it’s possible to use SSL certificates. These offer not only a stronger encryption method, but also authentication, so both the client and server know that they are indeed talking to each other, and not a man-in-the-middle. Please take a moment to read the PKI documentation before continuing with the below.

Whatever method of communication you choose, both the Opsview Agent server and clients (check_nrpe) must be told to use the same method: ciphers directly or SSL certificates. The Opsview Agent server configuration is in /opt/opsview/agent/etc/nrpe.cfg (on Windows in C:/Program Files/Opsview Agent/opsview.ini), and the clients are configured by command line parameters.

Host Variables Copied

We have added default parameters to every Service Check that comes with Opsview Monitor. If you check their definitions, you’ll see two new Host variables - NRPE_CIPHERS and NRPE_CERTIFICATES - discussed below. Note that you’ll have to add these variables yourself if you’re upgrading from an older version of Opsview Monitor. To do this add these two variables:

NRPE_CIPHERS

NRPE_CERTIFICATES

For each check_nrpe based service check that is to be used with the new feature, add these parameters:

-C '%NRPE_CERTIFICATES:1%' -k '%NRPE_CERTIFICATES:2%' -r '%NRPE_CERTIFICATES:3%' -y '%NRPE_CIPHERS:1%'

Ciphers Copied

In nrpe.cfg, ciphers (on Windows in opsview.ini it is allowed_ciphers) indicates the cipher list to use. Because there is no authentication involved in using a cipher directly like this, only ADH ciphers can be used here. The list follows the standard OpenSSL convention of colon-separated names, where the program attempts to use each cipher starting from the left, and falls back to the next one if unsuccessful. Similarly, the -y parameter to check_nrpe lists ciphers that the client should attempt to use, which, of course, must contain at least one of the ciphers that the server is using.

Each check_nrpe based Service Check is configured to accept the NRPE_CIPHERS host variable. Make sure the value of this variable is the same or contains at least one of the ciphers configured in nrpe.cfg.

SSL Certificates Copied

In nrpe.cfg, cert_file, privatekey_file and cacert_file (opsview.ini uses certificate, certificate_key and ca) are file paths to a certificate PEM file. The first value, Arg1, is the path to the certificate on the Collector, Arg2 is the path to the private key and Arg3 is the CA certificate. These parameters correspond to the -C, -k, -r parameters of the check_nrpe plugin.

The generation and use of the actual certificates is the User’s responsibility - please refer to the PKI documentation. The automated installer should create the required certificates for the Orchestrator. In a single server system (assuming the FQDN of the orchestrator is opsview.example.com), the following settings should be used:

NRPE_CERTIFICATES

NRPE_CIPHERS

  1. Use pki to create a server-cert certificate:
/opt/opsview/pki/bin/pki server-cert agent-machine.example.com
  1. Transfer the following files to that server (agent-machine.example.com should match exactly the Primary Hostname/IP configured in Opsview Monitor for the server).

    • /opt/opsview/etc/ssl/ca.pem
    • /opt/opsview/etc/ssl/agent-machine.example.com.pem
    • /opt/opsview/pki/ssl/private/agent-machine.example.com.key

On the agent-machine.example.com host, edit nrpe.cfg (or custom.ini on Windows), uncomment and change ciphers to match the definition used within NRPE_CIPHERS, and cert_file, privatekey_file and cacert_file options to point to their respective pem files. Then, restart the agent.

On Collectors that will be doing the monitoring, each check_nrpe based service check is configured to accept the NRPE_CERTIFICATES variable. The values for this variable refer to the certificate files for the Collector, and not the Host being monitored, as is the case usually with Host variables.

TLS Versions Copied

To enable TLSv1.2 only and disable older versions of TLS change the Linux Opsview Agent nrpe.cfg file. By default only TLSv1.2 is enabled for the Opsview Windows Agent.

protocols=TLSv1_2:!SSLv2:!SSLv3:!TLSv1:!TLSv1_1

Using Opsview Monitor with older Agents Copied

Opsview take security very seriously so all recent versions of Opsview Monitor default to using TLSv1.2 for all inter-process communication only. Consequently, agents for older versions of Opsview Monitor are unlikely to work without additional configuration to downgrade encryption to use TLSv1.0 or TLSv1.1. We recommend that you upgrade to later versions of Opsview Agents that support TLSv1.2 however if you have an operational need to run older Opsview Agents then a workaround is available to downgrade to use TLSv1.0 or TLSv1.2 for those specific Opsview Agents only.

Please see Transport Layer Security for more information on the issues with using TLSv1.0.

The following Opsview Agents support TLSv1.2 and it is recommended that you upgrade to at least these versions:

Agents or operating systems that do not support TLSV1.2 will need the following workaround to be applied to downgrade to TLSv1.0:

Workaround steps Copied

  1. As root user, run the following:
curl -L https://install.opsview.com/hotfixes/20180905_enable_check_nrpe_tlsv1 | sudo -iu opsview bash

If you do not have access to the root user, run the following command as the Nagios user:

curl -L https://install.opsview.com/hotfixes/20180905_enable_check_nrpe_tlsv1 | bash
  1. Go to Configuration > Apply Changes to apply the changes. This will modify the Opsview Monitor database to do the following:

    • Create a new Variable called NRPE_PROTOCOL and sets the default value to be ‘’\!SSLv2:\!SSLv3" (which allows TLSv1)
    • Adds the argument -P %NRPE_PROTOCOL% to the args list of every check_nrpe service check (replacing any other “-P ….” setting)
    • Makes the Apply Changes Icon change to indicate that Apply Changes is necessary
    • To change the configuration for a limited number of hosts instead of all of them, amend the NRPE_PROTOCOL variable (menu => settings -> variables) to exclude TLSv1 (by using: “\!TLSv1:\!SSLv2:\!SSLv3”) and then amend the configuration on an individual host by adding the NRPE_PROTOCOL variable to override arg1 using ‘TLSv1’.

Revert changes Copied

Running the workaround steps again will result in a prompt to revert the changes done by the script. This can be done once all agents have been updated to the latest version and all old Linux OS distributions have been upgraded to support the latest TLS versions.

curl -L https://install.opsview.com/hotfixes/20180905_enable_check_nrpe_tlsv1 | sudo -iu nagios bash

This will remove the argument -P TLSv1 from the arguments list of every check_nrpe service check.

Note

Apply Changes will have to be performed again after running the command above.
["Opsview"] ["User Guide"]

Was this topic helpful?