views:

511

answers:

3

Are there any libraries, (third party is fine) that can help do network auto-disovery using SNMP and .NET?

If not, have you ever rolled your own?

+1  A: 
  • HP OpenView does network discovery using SNMP. It might be worth looking into how they do it
  • Another suggestion is to work out your gateway and get the routers it is connected to via SNMP
Thomas Bratt
+2  A: 

I've recently come across http://www.codeplex.com/sharpsnmplib">Sharp SNMP Suite which I think does what you're asking for. I say "think" as I've not actually used it myself yet! I've just started looking into SNMP for the first time for a forthcoming project.

Luke Bennett
Nice! Thanks. I'll take a look at that.
IainMH
+3  A: 

Hi, as the author of #SNMP, I can confirm that it supports basic auto discovery feature. Just simply call Manager.Discover. There is also a discussion thread for your reference.

http://www.codeplex.com/sharpsnmplib/Thread/View.aspx?ThreadId=32902

Regards,

-Lex

Lex Li