Post by Mindaugas????
Thank You very much!
It's been a long time since this thread was active, but I thought I'd add a surprising discovery about this component (or SNMP in general).
I've seen other posts that have a leading decimal for OIDs, so I thought it was the normal syntax. I was using this:
".1.3.6.1.4.1.3808.1.1.1.3.2.1.0"
I could run a test with the Paessler SNMP tester and it worked perfectly.
However, when I used the same string with the Synapse release 40 SNMPget function in the SnmpTest project, it didn't work. I could see the request and response on Wireshark, but the response was always empty.
I noticed that the failing requests from SNMPget looked like this:
"get-request itu-t.1.3.6.1.4.1.3808.1.1.1.3.2.1.0"
The successful requests from Paessler SNMP tester looked like this:
"get-request 1.3.6.1.4.1.3808.1.1.1.3.2.1.0"
I found that I had to remove the leading decimal from the MIB OID number to prevent the itu-t prefix being added: "1.3.6.1.4.1.3808.1.1.1.3.2.1.0"
then it would be sent correctly and a valid response would be received.
I was curious where the "itu-t" prefix was coming from, but that string is not found in any of the Synapse libraries, so it is a mystery.