Nagios XI RPM install missing wizard tools

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
dfmco
Posts: 257
Joined: Wed Dec 04, 2013 11:05 am

Nagios XI RPM install missing wizard tools

Post by dfmco »

The router/switch wizard found my interfaces but the status is unknown and the tool is not on the server.
Here is the command it is running for the check:
check_xi_service_ifoperstatusnag!27!-v3 -u nms -A "****" -x AES -X "****" -a SHA -l authPriv

And here is the result of a find and locate command looking for the tool:
[root@tcog-monitor-h1 ~]# find / -name check_xi_service_ifoperstatusnag

[root@tcog-monitor-h1 ~]# locate check_xi_service
/usr/local/nagios/share/pnp/templates/check_xi_service_dns.php
/usr/local/nagios/share/pnp/templates/check_xi_service_http.php
/usr/local/nagios/share/pnp/templates/check_xi_service_http_content.php
/usr/local/nagios/share/pnp/templates/check_xi_service_mrtgtraf.php
/usr/local/nagios/share/pnp/templates/check_xi_service_ping.php

Can you help? We have run the latest updates on CentOS7.
jforcier

Re: Nagios XI RPM install missing wizard tools

Post by jforcier »

And here is the result of a find and locate command looking for the tool:
[root@tcog-monitor-h1 ~]# find / -name check_xi_service_ifoperstatusnag
The command should be defined in /usr/local/nagios/etc/commands.cfg

Code: Select all

define command {
    command_name    check_xi_service_ifoperstatusnag
    command_line    $USER1$/check_ifoperstatnag $ARG1$ $ARG2$ $HOSTADDRESS$
}
And the actual plugin is located in:

Code: Select all

/usr/local/nagios/libexec/check_ifoperstatnag
Are you able to do a snmpwalk from the terminal?

Code: Select all

snmpwalk -v3 -u <v3 user> -A <auth pw> -a md5 -l AuthPriv -X <prviacy pw> <ip.address.of.controller> <OID>
dfmco
Posts: 257
Joined: Wed Dec 04, 2013 11:05 am

Re: Nagios XI RPM install missing wizard tools

Post by dfmco »

I am getting the following on an SNMP walk but I have other systems that are using passwords less than 8 and they work. Is this a new setting and how can I change the restriction as we have all remote devices already configured with those passwords?
[root@tcog-monitor-h1 ~]# snmpwalk -v3 -l authPriv -u nms -a SHA -A <pass1-9 characters> -x AES -X <pass2-6 characters> 10.104.255.1
Error: passphrase chosen is below the length requirements of the USM (min=8).
dfmco
Posts: 257
Joined: Wed Dec 04, 2013 11:05 am

Re: Nagios XI RPM install missing wizard tools

Post by dfmco »

Did some reading and it seems that making it shorter is not a good idea. I am lengthening the password which is working.
ssax
Dreams In Code
Posts: 7682
Joined: Wed Feb 11, 2015 12:54 pm

Re: Nagios XI RPM install missing wizard tools

Post by ssax »

So are your issues resolved or are you still having problems?
dfmco
Posts: 257
Joined: Wed Dec 04, 2013 11:05 am

Re: Nagios XI RPM install missing wizard tools

Post by dfmco »

Sorry I was unclear. Problem is resolved! :-) Please close.
Locked