Hi all,
I have an issue with the dynamic Indexes.
When I want to access ifSpeed parameter in IF-MIB, I can do that:
And then read, that radio ifSpeed is 10420...
I can read only that information now by:
But how can I access it using dynamic indexes? I thought this would solve the issue, but not:
It's happening in the Web GUI too - if I use it at Item creation, OID - it returns "not supported" message.
What am I doing wrong?
Thanks in advance...
Using version 1.8.12
I have an issue with the dynamic Indexes.
When I want to access ifSpeed parameter in IF-MIB, I can do that:
Code:
zabbix:~ # snmpwalk -v 2c -c public 192.168.x.y IF-MIB::ifTable IF-MIB::ifIndex.1 = INTEGER: 1 IF-MIB::ifIndex.2 = INTEGER: 2 IF-MIB::ifDescr.1 = STRING: radio IF-MIB::ifDescr.2 = STRING: ethernet IF-MIB::ifType.1 = INTEGER: other(1) IF-MIB::ifType.2 = INTEGER: ethernetCsmacd(6) IF-MIB::ifMtu.1 = INTEGER: 1500 IF-MIB::ifMtu.2 = INTEGER: 1500 IF-MIB::ifSpeed.1 = Gauge32: 10420 IF-MIB::ifSpeed.2 = Gauge32: 1000000000
I can read only that information now by:
Code:
zabbix:~ # snmpwalk -v 2c -c public 192.168.x.y IF-MIB::ifSpeed.1 IF-MIB::ifSpeed.1 = Gauge32: 10420
Code:
zabbix:~ # snmpwalk -v 2c -c public 192.168.x.y IF-MIB::ifSpeed["index","ifDescr","radio"] No log handling enabled - using stderr logging
What am I doing wrong?
Thanks in advance...
Using version 1.8.12
Comment