When using the SNMP wizard, and manually add the OID from the MIB I get the following output.
Your help will be most appreciated.
SNMP OK-No Such Instance currently exists at this OID
SNMP OK-No Such Instance currently exists at this OID
You do not have the required permissions to view the files attached to this post.
Re: SNMP OK-No Such Instance currently exists at this OID
Can you go into the Core Config Manager > Services menu and find one of the services.
Click on the View Config icon (On the right side of the menu) copy the config data for the services and attach that to the post so we can view the settings for the check.
Also, it you have any MIB files for the device, did you upload them to the Nagios server using the Admin > Manage MIBs menu?
If not, that has to be done so the plugin can look up the OIDs used in the checks.
The message "No Such Instance currently exists at this OID" means that the OID you are using is not poll-able on the device, make sure it is available on the device.
Also, upload the MIB files for the device here as well so we can view them.
Click on the View Config icon (On the right side of the menu) copy the config data for the services and attach that to the post so we can view the settings for the check.
Also, it you have any MIB files for the device, did you upload them to the Nagios server using the Admin > Manage MIBs menu?
If not, that has to be done so the plugin can look up the OIDs used in the checks.
The message "No Such Instance currently exists at this OID" means that the OID you are using is not poll-able on the device, make sure it is available on the device.
Also, upload the MIB files for the device here as well so we can view them.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: SNMP OK-No Such Instance currently exists at this OID
The OID's you are using are not spelled correctly and that is why you are receiving the no such OID.
For example, this OID
should be this
Also, the -M option you are calling out the P-MIB to be loaded and that probably does not exist on your server.
The following is one of the checks called AverageOperationSize and you should change the Arguments from
to
I blocked out the username.
If this works, edit all of the checks and put in the MIB file and the pure instead of the letter p and that should work.
And, the checks that you specified the OID numbers, change them to the names and update the MIB name and they should work as well.
For example, this OID
Code: Select all
pArrayAverageOperationSize.0Code: Select all
pureArrayAverageOperationSize.0The following is one of the checks called AverageOperationSize and you should change the Arguments from
Code: Select all
-p 161 -o 'pArrayAverageOperationSize.0' -P 3 --seclevel=noAuthNoPriv --secname='xxxx' -m P-MIBCode: Select all
-p 161 -o 'pureArrayAverageOperationSize.0' -P 3 --seclevel=noAuthNoPriv --secname='xxxx' -m PURESTORAGE-MIBIf this works, edit all of the checks and put in the MIB file and the pure instead of the letter p and that should work.
And, the checks that you specified the OID numbers, change them to the names and update the MIB name and they should work as well.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: SNMP OK-No Such Instance currently exists at this OID
I've tried with the corrected OIDs. The issue hasn't changed.
I'm leaning towards the poll-able issue.
thanks
I'm leaning towards the poll-able issue.
thanks
Re: SNMP OK-No Such Instance currently exists at this OID
You will have to contact the manufacturer of the device to verify that it is setup correctly to be polled with SNMP.
Be sure to check out our Knowledgebase for helpful articles and solutions!