Guys, I need some small advice.
I monitor my network switches in a standard way, using two status values:
I have standard triggers, with interface number in the description:
The problem is that network admins are complaining that "interface65" tells them nothing. They lives in the world of aliases
.
All of the interfaces have configured descriptions (aliases in this example):
So simple question is: is there any way to use one value (ifAlias in this example) in trigger name?
I monitor my network switches in a standard way, using two status values:
Code:
([email protected] ~)# snmpwalk -v 2c -c XXXxxxXXX 192.168.2.254 ifAdminStatus.65 IF-MIB::ifAdminStatus.65 = INTEGER: up(1) ([email protected] ~)# snmpwalk -v 2c -c XXXxxxXXX 192.168.2.254 ifOperStatus.65 IF-MIB::ifOperStatus.65 = INTEGER: up(1)
Code:
Link down on interface65 on {HOST.NAME}: {SWITCH-CORE-1.local:ifAdminStatus.65.last(0)}=1 and {SWITCH-CORE-1.local:ifOperStatus.65.last(0)}=2
.All of the interfaces have configured descriptions (aliases in this example):
Code:
([email protected] ~)# snmpwalk -v 2c -c XXXxxxXXX 192.168.2.254 ifAlias.65 IF-MIB::ifAlias.65 = STRING: ### Uplink To FIREWALL-CORE
Comment