I'm running Zabbix Server 3.4.6 on FreeBSD 11.1-RELEASE, and have run into an odd issue when trying to set up dynamic SNMPv2c indexes in one of my templates. I'm working with Adtran 924e's both 2nd and 3rd generation, and I'm unsure where the issue is happening.
I have in my template, the following for grabbing the link speed of the ethernet ports:
I've also tried using:
The first being the substring immediately after the description, and the second being the full interface description string, as seen here:
In both cases, I'm told in the logs and in the red information box that the string I've given in the template is not found in "ifDescr". This is a bit perplexing when point-to-point interfaces are registered without issue using
.
Is there something I'm missing with the pattern matching facilities provided by dynamic indexes? Any help on this matter would be greatly appreciated.
I have in my template, the following for grabbing the link speed of the ethernet ports:
Code:
ifSpeed["index","ifDescr","eth 0/1"]
Code:
ifSpeed["index","ifDescr","eth 0/1: MAC:PQIII EtsecBasedVirtualEthernet1"]
Code:
IF-MIB::ifDescr.5 = STRING: eth 0/1: MAC:PQIII EtsecBasedVirtualEthernet1
Code:
ifSpeed["index","ifDescr","ppp 1"]
Is there something I'm missing with the pattern matching facilities provided by dynamic indexes? Any help on this matter would be greatly appreciated.