Related questions
How to get OIDs from a MIB file?
I want to read all the objects from the MIB file that a manager has.
I developed one tool to get some data from a SNMP enabled agent. I want to enhance that tool by showing all the OIDs form …
Definition of SNMP Gauge32 vs Counter32
Can someone point me to a good definition of Gauge32 vs Counter32? I understand that Counter32 can wrap, but Gauge32 can't.
I'm trying to understand their semantics. For example, I've heard you should take the difference between two Counter32 readings …
C# SNMP programming
I try write some code to retrieve objectID and the result is 2B-06-01-04-01-82-31-01-03-01-01.
Isn't this value correct?
// Send a SysObjectId SNMP request
response = conn.get("get", argv[0], argv[1], "1.3.6.1.2.1.1.2.0");
if (response[0] == 0xff)
{
…