Set Value Notification

Hi,

Thanks to your support now I’ve something working. An Agent “prototype” that I can GET/SET/WALK using some standard SNMP clients

Now the question is: how can I get notification inside the agent when an external client SET a value?

When this happen I’ve to do something on the system and would be great if some kind of “event” can trigger me.

Thank,s

Luca

Hi Luca,

if you want to see all set requests you will have to inspect the Request object in the main loop. But at this level, the request was not yet processed and you will therefore not know, if the request will succeed.

But normally you will only have to react to set requests that change objects of your own MIB implementation. For this, you will derive your classes from MibTable and MibLeaf and whenever a request is processed, the appropriate set-functions are called.

Kind regards,
Jochen

1 Like