Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Check Cisco BGP peer
Current Version
0.1
Last Release Date
2015-07-01
Compatible With
- Nagios 1.x
- Nagios 2.x
- Nagios 3.x
- Nagios 4.x
- Nagios XI
- Nagios Fusion
- Nagios Reactor
- Nagios Network Analyzer
- Nagios Log Server
Owner
License
GPL
Hits
12814
Files:
File | Description |
---|---|
check_snmp_cisco_bgp.pl | Version 0.1 - July 20 2015 |
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!
Checks the OSPF status of a BGP peer and reports back with uptime, remote AS and number of prefixes.
# ./check_snmp_cisco_bgp.pl -H 192.168.1.1 -C public -P 10.10.10.10
BGP state: established - Established for: 29 days, 13 hours, 48 minutes, 16 seconds, Remote AS: 64512, Number of prefixes: 538796 : OK
Can also be used with theshold for upper and lower limit threshold for number of prefixes, and warning and critical in hours for established time.
# ./check_snmp_cisco_bgp.pl -H 192.168.1.1 -C public -P 10.10.10.10 --lower 500000 --upper 600000 -w 48 -c 24
BGP state: established - Established for: 29 days, 13 hours, 48 minutes, 16 seconds, Remote AS: 64512, Number of prefixes: 538796 : OK
# ./check_snmp_cisco_bgp.pl -H 192.168.1.1 -C public -P 10.10.10.10
BGP state: established - Established for: 29 days, 13 hours, 48 minutes, 16 seconds, Remote AS: 64512, Number of prefixes: 538796 : OK
Can also be used with theshold for upper and lower limit threshold for number of prefixes, and warning and critical in hours for established time.
# ./check_snmp_cisco_bgp.pl -H 192.168.1.1 -C public -P 10.10.10.10 --lower 500000 --upper 600000 -w 48 -c 24
BGP state: established - Established for: 29 days, 13 hours, 48 minutes, 16 seconds, Remote AS: 64512, Number of prefixes: 538796 : OK
Reviews (1)
byfledorze, May 16, 2017
The plugin is developped in a standard way with usual V3 authentication. But when SNMP request gives NosuchInstance, it answers BPG OK.
I propose , line 430 :
undef $peer_state if ($peer_state =~ /nosuchinstance/i);
so that the result will be UNKNOWN.
I propose , line 430 :
undef $peer_state if ($peer_state =~ /nosuchinstance/i);
so that the result will be UNKNOWN.