This support forum board is for support questions relating to
Nagios XI , our flagship commercial network monitoring solution.
ytlcomm
Posts: 62 Joined: Tue May 22, 2012 8:52 pm
Post
by ytlcomm » Wed Aug 22, 2012 4:58 am
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:
Post
by scottwilkerson » Wed Aug 22, 2012 9:34 am
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
ytlcomm
Posts: 62 Joined: Tue May 22, 2012 8:52 pm
Post
by ytlcomm » Thu Aug 23, 2012 12:58 am
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.
ytlcomm
Posts: 62 Joined: Tue May 22, 2012 8:52 pm
Post
by ytlcomm » Thu Aug 23, 2012 10:01 pm
It works! Thanks for your assistance. You guys are the best!