SnmpSharpNet icon indicating copy to clipboard operation
SnmpSharpNet copied to clipboard

Simple Network Management Protocol (SNMP) .Net library written in C# (csharp). Implements protocol version 1, 2 and 3. http://www.snmpsharpnet.com

Results 10 SnmpSharpNet issues
Sort by recently updated
recently updated
newest added

It would be nice if the SHA-256 and SHA-512 AuthenticationDigests were supported for authentication.

A certain broadcast equipment manufacturers has started packing OctetStrings with NULLs to the full length of the packet, leading to decode errors. This removes trailing NULLs from the input buffer...

First of all, thank you very much for such a great component! I noticed that the Nuget package version 0.9.6 published on December 4, 2023 does not include the changes...

The original [RFC 1157](https://www.ietf.org/rfc/rfc1157.txt) (SNMP v1) has a restriction in section 4.1 that states a sender shall expect any reply message to come from the same address and port as...

Checking for _socket is null and using _socket after this. if( _socket == null ) _asyncCallback(AsyncRequestResult.Terminated, new IPEndPoint(_socket.AddressFamily == AddressFamily.InterNetwork ? IPAddress.Any : IPAddress.IPv6Any, 0), null, 0); else _asyncCallback(AsyncRequestResult.Terminated, new...

Hi, Since AsnType derivatives can only encode() into MutableByte, this creates a problem if I want to encode a series of, say, Integer32s in order to calculate a CRC on...