Trying to create an alert for when a member of a port-channel is down. I have necessary OIDs to create UnDP(s), but I'm not sure how to get them to work together for this. Any help is appreciated.
This OID shows the port channel index (648) and the member interface indexes (24 and 73):
iso.2.840.10006.300.43.1.2.1.1.12.24 = INTEGER: 648
iso.2.840.10006.300.43.1.2.1.1.12.73 = INTEGER: 648
The port-channel and member interface names:
IF-MIB::ifName.648 = STRING: Po41
IF-MIB::ifName.24 = STRING: Te1/2/8
IF-MIB::ifName.73 = STRING: Te2/2/8
And finally, each one's status:
IF-MIB::ifOperStatus.648 = INTEGER: up(1)
IF-MIB::ifOperStatus.24 = INTEGER: up(1)
IF-MIB::ifOperStatus.73 = INTEGER: up(1)
If Te1/2/8 went down, ideally, the alert message would say something like "Po41 member Te1/2/8 is Down on switch1.
If I poll for all this, perhaps I could use a SWQL query to pull it all together?
Thanks.
Steve