vote up 4 vote down star
1

I need to write an SNMP agent for my application.

I read the CodeProject article on how to write an SNMP extension agent DLL using win32, but would like to know if it is possible to do it with managed code.

Also, is it possible to write my own SNMP agent in managed code and run it along windows SNMP service? windows SNMP service is required to run on my server to provide the basic operating system management info.

What C# SNMP library would you recommend? I found a few C# SNMP protocol implementations, but could not find sample code on how to implement an SNMP agent - most samples are only about querying other agents or sending traps.

flag

25% accept rate

1 Answer

vote up 1 vote down
  1. the best library I have used in 8 years of NMS development - adventnet
  2. you can write your own, but you need to understand ASN. Good luck with that.
  3. SNMP agents do 2 things: query for data, send and receive traps. What else you want them to do? wash your laundry?! (sorry couldn't resist that! :) ).

What are you trying to do with your SNMP agent?! Does you app need to send traps?! or query for data from a node?!

link|flag
Thanks for your answer. I did do some ASN.1 development in C# but it's not what I had in mind - just looking for a good library and mostly some tips and insight. I would like my agent just to send traps and respond to queries. For the laundry my plan is to use python - should be a walk in the park. – zvikara Sep 26 '08 at 17:02
On the other hand, using Ajax for the laundry should work better. – zvikara Sep 26 '08 at 17:14
@[zvikara]: that's a Bold statement ;-) – Steven A. Lowe Jan 15 '09 at 20:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.