New Post: Set Context Name v3
You will have to manually construct the SNMP v3 message via a constructor such as public GetRequestMessage(VersionCode version, int messageId, int requestId, OctetString userName, IList<Variable>...
View ArticleNew Post: Using a Sequence datatype with SendTrapV2
As your final data in the TRAP v2 message will be of OctetString type, you should do the following,Construct the Sequence object as above. Construct an OctetString object to embed the Sequence object,...
View ArticleNew Post: Set Context Name v3
Yes, yesterday I found it. I downloaded the last src code and I can set the context name. But in binary release (tritonmate_8.0_rc_bin) I think that it is not possible. The context name is read only....
View ArticleUpdated Wiki: Home
Project Description#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...
View ArticleUpdated Wiki: Home
Project Description#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...
View ArticleReleased: TritonMate (8.0) RC (Apr 07, 2013)
News: MIB Compiler Pro Early Access Program is openWork item 7239 Bug in SecureSnmpContext.HandleMembership method is closed.Work item 7240 System.ArgumentException truncation error for 32-bit integer...
View ArticleUpdated Release: TritonMate (8.0) RC (Apr 07, 2013)
News: MIB Compiler Pro Early Access Program is openWork item 7239 Bug in SecureSnmpContext.HandleMembership method is closed.Work item 7240 System.ArgumentException truncation error for 32-bit integer...
View ArticleNew Post: How Can I Compile again The Edited Mib file Which Has Same Name ?
i am using DefaultObjectRegistry in my project and the user can change the MIB file corresponding the device connected to Network. when the user edits MIB contents and compile it again it encounters no...
View ArticleNew Post: How Can I Compile again The Edited Mib file Which Has Same Name ?
DefaultObjectRegistry is obsolete, and you should switch to SimpleObjectRegistry or ReloadableObjectRegistry. For the open source edition of SharpSnmpLib.Mib, you will have to use...
View ArticleNew Post: How Can I Compile again The Edited Mib file Which Has Same Name ?
I use : ReloadableObjectRegistry reloadObject =new ReloadableObjectRegistry(path); reloadObject.Compile(MibFilePath); but reloadobject loadedMolules is null
View ArticleReleased: TritonMate (8.0) (Apr 07, 2013)
News: MIB Compiler Pro Early Access Program is openWork item 7239 Bug in SecureSnmpContext.HandleMembership method is closed.Work item 7240 System.ArgumentException truncation error for 32-bit integer...
View ArticleUpdated Release: TritonMate (8.0) (Apr 07, 2013)
News: MIB Compiler Pro Early Access Program is openWork item 7239 Bug in SecureSnmpContext.HandleMembership method is closed.Work item 7240 System.ArgumentException truncation error for 32-bit integer...
View ArticleNew Post: How Can I Compile again The Edited Mib file Which Has Same Name ?
If reloadObject.Tree.PendingModules.Count is not 0, then the modules are pending. You will have to compile all modules and their dependencies to avoid pending modules. If both...
View ArticleNew Post: Multi-Threading with ISnmpMessage classes
Hi Lex, You wrote in FAQs that the library is not thread safeIs this library thread safe? : Not yet. Please use static methods in Messenger class which should be thread safe. However in one of the...
View ArticleNew Post: Configurable EngineId, SNMPv3 Discovery and SNMP exception.
SNMP v3 response cache can be a nice addition to improve performance. But this cache needs to be per agent, and managed with timeout/exception in mind. I don't have any idea on how to implement it yet....
View ArticleNew Post: Multi-Threading with ISnmpMessage classes
ISnmpMessage derived classes can be viewed as the object representation of raw bytes in the packets,They are designed to be immutable once constructed. (If it fails to meet this, please report a bug.)...
View ArticleNew Post: Configurable EngineId, SNMPv3 Discovery and SNMP exception.
If you review the constructor of a typical SNMP v3 message, such as GetRequestMessage, you will see the report parameter used. Using that report message is too heavy, as you can see only two sections...
View ArticleNew Post: SNMP and VLANs
Hi, I'm new to SNMP world, I'm a confused about how it works. What I need is get and set VLANs for a switch from HP model v1910-24G. Where I can find the OID correct to get VLAN. Above there is the...
View ArticleNew Post: SNMP and VLANs
You should read HP documentation on that model or contact its support team to understand how to achieve management via SNMP.
View Article