WINDOWS SNMP Error

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
Flava
Posts: 68
Joined: Wed Feb 01, 2012 10:06 am

WINDOWS SNMP Error

Post by Flava »

I am getting the following error when monitoring services on Windows 2008 using snmp

Code: Select all

ERROR: Process name table : Message size exceeded buffer maxMsgSize
Thanks
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: WINDOWS SNMP Error

Post by lmiltchev »

Open the "check_snmp_win.pl" in a text editor:

Code: Select all

vi /usr/local/nagios/libexec/check_snmp_win.pl
...find this line:

Code: Select all

$session->max_msg_size(5000)
Try increasing the limit to 10000:

Code: Select all

$session->max_msg_size(10000)
Hope this helps.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked