How is it possible to get OID or MIB from agent, started like shown in snmpd sample?
I'm just starting to learn snmp
. At first, the learning plan is to create any agent simulator and a simple client to query some information from agent.
After downloading and slightly exploring snmpd
sample, I, probably, succeded with using SharpSnmpLib.Engine to create a "hello world" agent. It seems to be listening for incoming requests.
But, now I struggle with how to create a client, which would get any info from this agent. To be more specific, how could I get OID or MIB from the newly made agent, so that it's possible to send requests to it?
snmpd
uses SharpSnmpLib.Engine. My code is same as here:
sharpsnmplib-samples/Samples/CSharpCore/snmpd/Program.cs
Thanks!