51 releases (17 breaking)

0.20.2 Oct 18, 2024
0.20.0 Sep 30, 2024
0.16.0 Jul 17, 2024
0.13.1 Mar 21, 2024
0.3.1 Jul 19, 2021

#1305 in Network programming

Download history 1882/week @ 2024-07-15 2183/week @ 2024-07-22 1564/week @ 2024-07-29 1222/week @ 2024-08-05 1233/week @ 2024-08-12 2311/week @ 2024-08-19 1954/week @ 2024-08-26 1667/week @ 2024-09-02 2013/week @ 2024-09-09 1571/week @ 2024-09-16 2146/week @ 2024-09-23 3116/week @ 2024-09-30 2060/week @ 2024-10-07 1501/week @ 2024-10-14 1981/week @ 2024-10-21 2366/week @ 2024-10-28

8,022 downloads per month
Used in rsnmp

MIT/Apache

1MB
18K SLoC

Simple Network Management Protocol

rasn-snmp implementation of the protocol data types from IETF RFCs 1157, 1901, 3412, and 3416. This does not provide an implementation of an agent or proxy, but provides the data types needed to build your own agent or proxy implementation.

This library in combination with it's sibling crates rasn, rasn-smi, and rasn-mib allow you to decode, and encode SNMP protocol messages using entirely safe Rust. All of these libraries are also #[no_std] so they support any platform that supports alloc.

use rasn_snmp::{v2c::Message, v2::Pdus};

let data: &[u8] = &[];

// Decode SNMPv2c message containing a SNMPv2 PDU.
let message: Message<Pdus> = rasn::ber::decode(data).unwrap();

// Handle the request.
match message.data {
    Pdus::GetRequest(request) => {},
    Pdus::GetNextRequest(request) => {},
    Pdus::Response(request) => {},
    // ...
# _ => {}
}

Dependencies

~8MB
~143K SLoC