Hi,
I have one SNMP device which is working fine with native net-snmp get and walk command

As you can see, SNMP object type for this OID is OPAQUE and the actual data is hex-string which I found this pre-processing javascript to convert it ASCII
Which successfully convert 4E 6F 20 46 61 75 6C 74 ==> No Fault
But the problem is when I define this OID as an item, the item get error "SNMP - value has unknown type [0x44]"
I also have tested all "Type of information" (Character, Log, Text) for this item in the configuration panel, but nothing changed

I really appreciate it if someone can help me
Thanks,
Javad Gorji
I have one SNMP device which is working fine with native net-snmp get and walk command
As you can see, SNMP object type for this OID is OPAQUE and the actual data is hex-string which I found this pre-processing javascript to convert it ASCII
Code:
var out = "";
for (var i = 0, nums = value.split(" "); i < nums.length; i++) {
out += String.fromCharCode(parseInt(nums[i], 16));
}
return out;
But the problem is when I define this OID as an item, the item get error "SNMP - value has unknown type [0x44]"
I also have tested all "Type of information" (Character, Log, Text) for this item in the configuration panel, but nothing changed
I really appreciate it if someone can help me
Thanks,
Javad Gorji
Comment