SNMP

Nortel check_snmp_nortel_core

Description:

Plugin to check the status of Nortel core routers (Passport Systems 8600, or currently named Ethernet Routing Switch 8600). My two tiny cents to the Nagios community 🙂

Current Version

Last Release Date

June 23, 2009

Compatible With


Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Project Files
Project Notes
Plugin to check the status of Nortel core routers (Passport systems or currently named Ethernet Routing Switch). Current Status: OK Status Information: CpuUtil=9% SwitchFabricUtil=0% SysBufferUtil=1 Performance Data: CpuUtil=9 SwitchFabricUtil=0 SysBufferUtil=1 My two cents to the Nagios community :) maybe someone will enjoy this plugin. Grtz, Roderick Derks
Reviews (1) Add a Review
nice plugin but it has some bugs
by ovi1, January 31, 2010
The plugin is returning the right values but if you test it will never return warning or critical because the last if is not correct.
To fix it replace it with:
if ( $cpu_status eq "critical" or $switchfabricutil_status eq "critical" or $sysbufferutil_status eq "critical" ) {
print "SNMP_ENVIRONMENT CRITICAL : $OUTPUT
";
exit $STATE_CRITICAL;
}
elsif ( $cpu_status eq "warning" or $switchfabricutil_status eq "warning" or $sysbufferutil_status eq "warning" ) {
print "SNMP_ENVIRONMENT WARNING : $OUTPUT
";
exit $STATE_WARNING;
}
else {
print "SNMP_ENVIRONMENT OK : $OUTPUT
";
exit $STATE_OK;
}



Anyway thanks a lot for the plugin.
Helpful? Yes  No 
Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
4.5 (2)
Favorites
0
Views
152,967