Page 1 of 1

After upgrading NagiosXI 2014 R1.0 to R1.1

Posted: Thu Jun 05, 2014 8:03 am
by Rupender
Hi,

After upgrading NagiosXI 2014 R1.0 to R1.1. we are getting lots of these messages and i was wondering why it is coming from a specific hosts(Three Exchange Server)?

COMMAND: /usr/local/nagios/libexec/check_snmp_win.pl -H X.X.X.112 -C public --v2c -n 'Microsoft Exchange Active Directory Topology'
OUTPUT: ERROR: Process name table : Message size exceeded buffer maxMsgSize.

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Posted: Thu Jun 05, 2014 8:19 am
by scottwilkerson
Depending on the plugin some have a -o flag that can be set

In other scripts, try adding :
$session->max_msg_size(5000);

After the session has been initialized.

re: http://nagios.manubulon.com/faq.html#FAQ9

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Posted: Thu Jun 05, 2014 8:43 am
by Rupender
Thanks for instant reply but problem is still persist.

in this plugin(check_snmp_win.pl) this $session->max_msg_size(5000); line is already present.

So, i did not change anything, please give me the exact information.

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Posted: Thu Jun 05, 2014 11:42 am
by lmiltchev
Have you tried increasing the value?
Open the "check_snmp_win.pl" in a text editor and change this line:

Code: Select all

$session->max_msg_size(5000);
to:

Code: Select all

$session->max_msg_size(10000);
Did the error go away?

Re: After upgrading NagiosXI 2014 R1.0 to R1.1

Posted: Thu Jun 05, 2014 11:55 am
by Rupender
Thanks, Error has gone.......