I have a problem with monitoring some of the SNMP items (Zabbix server version 2.2.1).
Trying to retrieve a value of OID with snmpget works without a problem:
# snmpget -v 2c -c public somehost.local 1.3.6.1.4.1.6574.4.3.1.1.0
SNMPv2-SMI::enterprises.6574.4.3.1.1.0 = Opaque: Float: 100.000000
but when I configure an Item in Zabbix with the same OID, Zabbix returns an error:
item [****] became not supported: Value has unknown type 0x78
As a workaround I configured a UserParameter in the Zabbix agent config on the server:
UserParameter=item_key,snmpget -v 2c -c public somehost.local 1.3.6.1.4.1.6574.4.3.1.1.0 | sed -e "s/\(.*Float\:\ \)\(.*\)/\2/g"
This returns the same value of 100.000000 and it works ok.
Any ideas what could be the problem?
Thanks.
-urly
Trying to retrieve a value of OID with snmpget works without a problem:
# snmpget -v 2c -c public somehost.local 1.3.6.1.4.1.6574.4.3.1.1.0
SNMPv2-SMI::enterprises.6574.4.3.1.1.0 = Opaque: Float: 100.000000
but when I configure an Item in Zabbix with the same OID, Zabbix returns an error:
item [****] became not supported: Value has unknown type 0x78
As a workaround I configured a UserParameter in the Zabbix agent config on the server:
UserParameter=item_key,snmpget -v 2c -c public somehost.local 1.3.6.1.4.1.6574.4.3.1.1.0 | sed -e "s/\(.*Float\:\ \)\(.*\)/\2/g"
This returns the same value of 100.000000 and it works ok.
Any ideas what could be the problem?
Thanks.
-urly
Comment