SNMP v3 Wizard

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
ytlcomm
Posts: 62
Joined: Tue May 22, 2012 8:52 pm

SNMP v3 Wizard

Post by ytlcomm »

Hi guys,

How do I translate this snmpwalk command line to ./check_snmp so that I'm getting almost the same output?

Code: Select all

[root@nagios01 ~]# snmpwalk -v 3 -a SHA -A Apassword -u root -l authNoPriv IP_address -x AES -X Xpassword -Cc .1.3.6.1.4.1.2021.10.1.3.1       
UCD-SNMP-MIB::laLoad.1 = STRING: 0.00
Thanks.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: SNMP v3 Wizard

Post by scottwilkerson »

First you would need to have to have 1.4.15 version of the plugin to do this.

Code: Select all

./check_snmp -H IP_address -P 3  -a SHA -x AES -L authNoPriv -A Apassword -X Xpassword -o .1.3.6.1.4.1.2021.10.1.3.1
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
ytlcomm
Posts: 62
Joined: Tue May 22, 2012 8:52 pm

Re: SNMP v3 Wizard

Post by ytlcomm »

Thanks. After upgrade to 1.4.15 its showing some output.

Code: Select all

[root@nagios01 libexec]# ./check_snmp -H IP_ADDRESS -P 3 -U root -a SHA -x AES -L authNoPriv -A A_PASSWORD -X X_PASSWORD -o .1.3.6.1.4.1.2021.10.1.3.1 -C public
SNMP OK - "0.00" | 
But using Linux SNMP Monitoring Wizard for SNMP V3 doesn't seems to work. Plus there is no column to put auth proto or priv proto unlike SNMP Monitoring Wizard.

Code: Select all

ERROR: Description/Type table : No response from remote host 'IP_ADDRESS'.
snmp.png
You do not have the required permissions to view the files attached to this post.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: SNMP v3 Wizard

Post by scottwilkerson »

The wizard has been updated since the version you have to account for this.

Download the new wizard from
http://exchange.nagios.org/directory/Ad ... rd/details

Then upload it through Admin -> Manage Config Wizards
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
ytlcomm
Posts: 62
Joined: Tue May 22, 2012 8:52 pm

Re: SNMP v3 Wizard

Post by ytlcomm »

It works! Thanks for your assistance. You guys are the best!
Locked