Re: Synchronize access to agent from multiple management consoles

2011-04-20 Thread Dave Shield
On 19 April 2011 09:22, Boris Zweimueller wrote: > In my setup, a specific configuration of my agent is done with sequences of > consecutive SNMP set commands. It is important, that they come all together. The simplest way to ensure this would be to require that the assignments are all included w

Re: Synchronize access to agent from multiple management consoles

2011-04-19 Thread Boris Zweimüller
Hi Markus Thanks for the idea. For this solution the clients need to change their requests which might be a Problem.. I only develop the agent. Maybe i can store the incoming sender address an only let Future set requests Be proccessed if they come from the same host until a crutical sequence i

Re: Synchronize access to agent from multiple management consoles

2011-04-19 Thread Markus Gaugusch
Hi Boris! You could use a random number as part of your OID, and all requests with this (same) random number belong together. The manager could even request a valid number before doing the set commands, so you can validate it. I think I've already seen this technique somewhere, but can't find

Synchronize access to agent from multiple management consoles

2011-04-19 Thread Boris Zweimueller
Hi all In my setup, a specific configuration of my agent is done with sequences of consecutive SNMP set commands. It is important, that they come all together. It must not be possible, that another management console can configure something in between. How can this be realized? I thought of som