#protocols #ietf-rfc #snmp #management #rasn #safe #data

rasn-snmp

Data types for handling the Simple Network Management Protocol

30 releases (10 breaking)

new 0.13.1 Mar 21, 2024
0.12.5 Feb 3, 2024
0.12.4 Dec 4, 2023
0.12.3 Nov 25, 2023
0.3.1 Jul 19, 2021

#698 in Network programming

Download history 2102/week @ 2023-12-04 1421/week @ 2023-12-11 647/week @ 2023-12-18 125/week @ 2023-12-25 2063/week @ 2024-01-01 1898/week @ 2024-01-08 2372/week @ 2024-01-15 1903/week @ 2024-01-22 1641/week @ 2024-01-29 1599/week @ 2024-02-05 2288/week @ 2024-02-12 1433/week @ 2024-02-19 2595/week @ 2024-02-26 2577/week @ 2024-03-04 1605/week @ 2024-03-11 1414/week @ 2024-03-18

8,216 downloads per month

MIT/Apache

575KB
13K 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

~9.5MB
~194K SLoC