NetXMS Support Forum

English Support => General Support => Topic started by: jdowney on April 14, 2022, 12:59:53 PM

Title: BGP Monitoring cisco
Post by: jdowney on April 14, 2022, 12:59:53 PM
Hi wondering if anyone else is already monitoring BGP on cisco devices. Wondering how others are doing this SNMP trap or Syslog ? How are you trigging alerts?

Thanks in advanced
Title: Re: BGP Monitoring cisco
Post by: Storm-Donovan on April 20, 2022, 05:00:40 PM
There's probably better ways, but we do an SNMP query on bgpPeerState and alarm if the result is not 6 (established)

SNMP Parameter .1.3.6.1.2.1.15.3.1.2.{instance}

Instance Discovery SNMP Walk on .1.3.6.1.2.1.15.3.1.2

Threshold Last Polled Value != 6
Title: Re: BGP Monitoring cisco
Post by: Borgso on April 20, 2022, 06:16:26 PM
We are also using this OID.

Here is some more info: https://oidref.com/1.3.6.1.2.1.15.3.1.2

SYNTAX INTEGER {
idle(1),
connect(2),
active(3),
opensent(4),
openconfirm(5),
established(6)
}
Title: Re: BGP Monitoring cisco
Post by: jdowney on April 21, 2022, 10:10:23 AM
Thanks both very helpful have now implemented this.