Click here to Skip to main content
15,867,594 members
Articles / Programming Languages / Visual Basic

An introduction to #SNMP, an Open Source SNMP implementation

Rate me:
Please Sign up or sign in to vote.
4.56/5 (18 votes)
9 Jun 2013MIT4 min read 186.1K   12.2K   41   69
This article introduces #SNMP and how to use it to accomplish SNMP operations such as managing SNMP enabled devices.

Introduction

#SNMP (SharpSNMP) Suite is a set of free SNMP tools based on an Open Source library for developers who target Microsoft .NET/Xamarin Mono platforms. It's developed in C# and can be used for VB.NET, Delphi Prism, and many other programming languages.

This article is released under MIT license (so the sample code shown in this article is also released under MIT license). 

Background 

TCP/IP based socket programming is fully supported by .NET Framework since its day 1. However, as there is no class in .NET Framework Base Class Library that is specific for SNMP, developers have to resort to very expensive third party libraries. There were a few free solutions, but they either lacks of SNMP v3, MIB support, or other advanced features. I wrote a blog post back in 2007 which listed more information if you want to investigate.

In April 2008 I announced an open source project called #SNMP to address this problem, as I believe that via collaboration a better solution can be achieved to benefit whoever wants a good enough free solution. After more than 4 years, this library grows to its current status, with a strong enough library, plus many useful sample projects.

The project homepage is at CodePlex, and the source code is at GitHub. Note that the code base is split into different modules, and released under different licenses, as stated in KB600012

Primarily #SNMP can be used on Windows/.NET platforms, such as Windows XP/Windows Vista/Windows 7 and Windows Server OS, supporting .NET Framework 3.5/4.0/4.5. As a pure .NET based code base, it has been successfully ported to Windows CE/.NET CF, Mono, MonoTouch, as well as Mono for Android.

Using the library

The documentation package contains a SandCastle generated help file, which can be used to glance on all classes provided in #SNMP Library (Lextm.SharpSnmpLib.*.dll).

Below a few SNMP operations (GET, SET and so on) are translated to #SNMP function calls,

GET Operation

The following code shows how to send an SNMP v1 GET message to an SNMP agent located at 192.168.1.2 and query on OID 1.3.6.1.2.1.1.1.0,

C#
var result = Messenger.Get(VersionCode.V1, 
                           new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161), 
                           new OctetString("public"),
                           new List<Variable>{new Variable(new ObjectIdentifier("1.3.6.1.2.1.1.1.0"))},
                           60000);

This operation will time out if no reply is received after 60 seconds (1 minute), and throw an exception (TimeoutException). If any error occurs, an ErrorException can be caught. All #SNMP exceptions are derived from SnmpException

The result returned is a list that matches the list of Variable objects sent. The Variable in this list contains the value of the OID.

SET Operation

The following code shows how to send an SNMP v1 SET message to an SNMP agent located at 192.168.1.2 and set the value of OID 1.3.6.1.2.1.1.6.0 to "Shanghai",

C#
var result = Messenger.Set(VersionCode.V1, 
                           new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161), 
                           new OctetString("public"),
                           new List<Variable>{new Variable(new ObjectIdentifier("1.3.6.1.2.1.1.6.0"), new OctetString("Shanghai"))},
                           60000);

GET-NEXT Operation

The following code shows how to send an SNMP v1 GET-NEXT message to an SNMP agent located at 192.168.1.2 and query on OID 1.3.6.1.2.1.1.1.0,

C#
GetNextRequestMessage message = new GetNextRequestMessage(0,
                              VersionCode.V1,
                              new OctetString("public"),
                              new List<Variable>{new Variable(new ObjectIdentifier("1.3.6.1.2.1.1.6.0"))});
ISnmpMessage response = message.GetResponse(60000, new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161));
if (response.Pdu().ErrorStatus.ToInt32() != 0) 
{
    throw ErrorException.Create(
        "error in response",
        receiver.Address,
        response);
}

var result = response.Pdu().Variables;

GET-BULK Operation

The following code shows how to send an SNMP v2 GET-BULK message to an SNMP agent located at 192.168.1.2 and query on OID 1.3.6.1.2.1.1.1.0,

C#
GetBulkRequestMessage message = new GetBulkRequestMessage(0,
                      VersionCode.V2,
                      new OctetString("public"),
                      0,
                      10,
                      new List<Variable>{new Variable(new ObjectIdentifier("1.3.6.1.2.1.1.6.0"))});
ISnmpMessage response = message.GetResponse(60000, new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161));
if (response.Pdu().ErrorStatus.ToInt32() != 0)
{
    throw ErrorException.Create(
        "error in response",
        receiver.Address,
        response);
}

var result = response.Pdu().Variables;

Walk Operation

Walk is not an atomic operation. That means, it utilizes several GET-NEXT (SNMP v1 walk) or GET-BULK (v2 and above). The following code shows how to perform walk on an SNMP agent located at 192.168.1.2 starting at 1.3.6.1.2.1.1,

C#
var result = new List<Variable>();
Messenger.Walk(VersionCode.V1, 
               new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161), 
               new OctetString("public"), 
               new ObjectIdentifier("1.3.6.1.2.1.1"), 
               result, 
               60000, 
               WalkMode.WithinSubtree);

The result returned contains a list of all available OIDs (as Variable) in this SNMP agent that under tree node of 1.3.6.1.2.1.1.

#SNMP supports two walk modes, Default and WithinSubtree.

Messenger.Walk is built GET-NEXT. Note that Messenger.BulkWalk should be used if the device supports SNMP v2, as it is built on GET-BULK and provide better performance.

C#
var result = new List<Variable>();
Messenger.BulkWalk(VersionCode.V2, 
                   new IPEndPoint(IPAddress.Parse("192.168.1.2"), 161), 
                   new OctetString("public"), 
                   new ObjectIdentifier("1.3.6.1.2.1.1"), 
                   result, 
                   60000, 
                   10, 
                   WalkMode.WithinSubtree, 
                   null, 
                   null);

TRAP Operation

It is usually an SNMP agent that sends out TRAP messages. The following code shows how to send an empty SNMP v1 TRAP message from 192.168.1.2 to an SNMP manager located at 192.168.1.3,

C#
Messenger.SendTrapV1(new IPEndPoint(IPAddress.Parse("192.168.1.3"), 162), 
                     IPAddress.Parse("192.168.1.2"), 
                     new OctetString("public"), 
                     new ObjectIdentifier("1.3.6.1.2.1.1"), 
                     GenericCode.ColdStart, 
                     0, 
                     0, 
                     new List<Variable>();

SNMP v2 and above introduces a simplified TRAP v2 message,

C#
Messenger.SendTrapV2(0, 
                     VersionCode.V2, 
                     new IPEndPoint(IPAddress.Parse("192.168.1.3"), 162), 
                     new OctetString("public"), 
                     new ObjectIdentifier("1.3.6.1.2.1.1"), 
                     0, 
                     new List<Variable>());

INFORM Operation

It is usually an SNMP agent that sends out INFORM messages. The following code shows how to send an empty INFORM message to an SNMP manager located at 192.168.1.3,

C#
Messenger.SendInform(0, 
                     VersionCode.V2, 
                     new IPEndPoint(IPAddress.Parse("192.168.1.3"), 162), 
                     new OctetString("public"), 
                     new ObjectIdentifier("1.3.6.1.2.1.1"), 
                     0, 
                     new List<Variable>(), 
                     2000, 
                     null, 
                     null);

The manager should send back a reply to this INFORM message. Otherwise, a TimeoutException occurs.

To help you understand how to use the API provided by #SNMP Library, there are more sample projects you can find under Samples folder in source code package. Both C# and VB.NET samples are available.

Points of Interest

The above samples should give you a taste on how simple it is to perform common SNMP operations with #SNMP API.

I am going to write more articles on advanced usage such as compiling MIB document, SNMP v3 operations, and big samples such as #SNMP Compiler/Browser/Agent.

History

June 9th, 2013: Upgraded binaries to 8.0 release. 

October 3rd, 2012: Added more operations and sample code.

October 2nd, 2012: Revised open source license descriptions.

September 30th, 2012: Initial release of this article.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
CEO LeXtudio Inc.
Canada Canada
Developer, podcast producer, book author, blogger and open source advocate.

Microsoft IIS/ASP.NET MVP 2012-2020.

Consulting services can be purchased from https://support.lextudio.com/services/consulting.html

Comments and Discussions

 
GeneralRe: Garbled SNMP response Pin
Mark Comerford8-Jul-15 0:12
Mark Comerford8-Jul-15 0:12 
GeneralRe: Garbled SNMP response Pin
Member 114428158-Jul-15 0:57
Member 114428158-Jul-15 0:57 
QuestionMIB parser/reader Pin
RudyL7-Apr-15 9:11
RudyL7-Apr-15 9:11 
AnswerRe: MIB parser/reader Pin
Lex Li22-Jun-15 1:50
professionalLex Li22-Jun-15 1:50 
QuestionPassing a 'string' value as part of the ISnmpData Pin
Member 103011359-Mar-15 0:06
Member 103011359-Mar-15 0:06 
AnswerRe: Passing a 'string' value as part of the ISnmpData Pin
Lex Li22-Jun-15 1:41
professionalLex Li22-Jun-15 1:41 
GeneralMy vote of 3 Pin
phil.o21-Feb-15 0:13
professionalphil.o21-Feb-15 0:13 
GeneralRe: My vote of 3 Pin
Lex Li18-Oct-15 7:44
professionalLex Li18-Oct-15 7:44 
Thanks for sharing your vote. I personally found it a horrible experience to post articles on CodeProject, both the review process and the various settings, so I have moved away from it in favor of my personal blog and documentation site. Probably the article title was misleading, as this article focuses on the introduction part, not the implementation part. Anyway, won't edit it any more to trouble myself and the reviewers.

About the code, if you read "Background" section, it is fully available on GitHub, https://github.com/lextm/sharpsnmplib[^]
#SNMP, http://sharpsnmplib.codeplex.com

Questionload or parser .mib file Pin
carlos ariel alt2-Feb-15 9:31
carlos ariel alt2-Feb-15 9:31 
AnswerRe: load or parser .mib file Pin
Lex Li22-Jun-15 1:46
professionalLex Li22-Jun-15 1:46 
QuestionCan the lib be used for SNMP proxy? Pin
dristan29-Oct-14 14:49
dristan29-Oct-14 14:49 
AnswerRe: Can the lib be used for SNMP proxy? Pin
Lex Li23-Nov-14 18:57
professionalLex Li23-Nov-14 18:57 
QuestionSNMP WALK with V3 Pin
Member 105448871-Jul-14 6:47
Member 105448871-Jul-14 6:47 
AnswerRe: SNMP WALK with V3 Pin
Lex Li2-Jul-14 12:34
professionalLex Li2-Jul-14 12:34 
GeneralRe: SNMP WALK with V3 Pin
Member 105448873-Jul-14 2:46
Member 105448873-Jul-14 2:46 
GeneralRe: SNMP WALK with V3 Pin
Lex Li3-Jul-14 17:10
professionalLex Li3-Jul-14 17:10 
QuestionPlease help me in send a custom dynamic long messaage to SNMP using sendtrap Pin
Ravindranp10-Apr-14 9:07
Ravindranp10-Apr-14 9:07 
AnswerRe: Please help me in send a custom dynamic long messaage to SNMP using sendtrap Pin
Lex Li11-Apr-14 2:39
professionalLex Li11-Apr-14 2:39 
QuestionTimeout exception Get Method Pin
Daniel Dimitri18-Mar-14 5:08
Daniel Dimitri18-Mar-14 5:08 
AnswerRe: Timeout exception Get Method Pin
Lex Li19-Mar-14 0:54
professionalLex Li19-Mar-14 0:54 
GeneralRe: Timeout exception Get Method Pin
Daniel Dimitri21-Mar-14 0:28
Daniel Dimitri21-Mar-14 0:28 
QuestionClasses to import Pin
Member 1059613017-Feb-14 23:17
Member 1059613017-Feb-14 23:17 
AnswerRe: Classes to import Pin
Lex Li2-Jul-14 23:54
professionalLex Li2-Jul-14 23:54 
QuestionXAMARIN and SNMP library/commands - C# android Pin
Kema Tala30-Jan-14 5:24
Kema Tala30-Jan-14 5:24 
AnswerRe: XAMARIN and SNMP library/commands - C# android Pin
Lex Li30-Jan-14 19:17
professionalLex Li30-Jan-14 19:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.