Page 1 of 1

SNMP v3 Wizard

Posted: Wed Aug 22, 2012 4:58 am
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.

Re: SNMP v3 Wizard

Posted: Wed Aug 22, 2012 9:34 am
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

Re: SNMP v3 Wizard

Posted: Thu Aug 23, 2012 12:58 am
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

Re: SNMP v3 Wizard

Posted: Thu Aug 23, 2012 8:49 am
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

Re: SNMP v3 Wizard

Posted: Thu Aug 23, 2012 10:01 pm
by ytlcomm
It works! Thanks for your assistance. You guys are the best!