Still getting Error
[root@vm-is-snmp02 libexec]# ./check_snmp_storage_wizard.pl -H 10.80.72.115 -C public --v2c -m ^/$ -w 80 -c 95 -f
Unknown storage : ^/$ : ERROR
[root@vm-is-snmp02 libexec]# ./check_snmp_storage_wizard.pl -H 10.80.72.115 -C public --v2c -m ^/var -w 80 -c 95 -f
Unknown storage : ^/var : ERROR
SNMP monitoring on Ubuntu
Re: SNMP monitoring on Ubuntu
Hi
From a shell on the Nagios server please run:
That should result in more than 50 lines of output. If it doesn't, or if it gave you errors,
then do the following on the machine you want to monitor (10.80.72.115) :
add the following two lines:
rocommunity public localhost
rocommunity public <ipaddress of nagios server>
save the file and exit vi
restart the snmpd service
Now go back to the shell on the Nagios server please run:
Let me know how it works out.
Thank you
From a shell on the Nagios server please run:
Code: Select all
snmpwalk -v 2c -c public 10.80.72.115 1.3.6.1.2.1.25.2.3.1then do the following on the machine you want to monitor (10.80.72.115) :
Code: Select all
mv /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig
vi /etc/snmp/snmpd.confrocommunity public localhost
rocommunity public <ipaddress of nagios server>
save the file and exit vi
restart the snmpd service
Now go back to the shell on the Nagios server please run:
Code: Select all
snmpwalk -v 2c -c public 10.80.72.115 1.3.6.1.2.1.25.2.3.1Thank you