dart_snmp 2.0.0 copy "dart_snmp: ^2.0.0" to clipboard
dart_snmp: ^2.0.0 copied to clipboard

outdated

A dart library for communicating with simple network management protocol (snmp) enabled devices

An snmp library for Dart developers.

Usage #

A simple usage example:

import 'dart:io';
import 'package:dart_snmp/dart_snmp.dart';

void main() async {
  var target = InternetAddress('192.168.1.1');
  var session = await Snmp.createSession(target);
  var oid = Oid.fromString('1.3.6.1.2.1.1.1.0'); // sysDesc
  var message = await session.get(oid);
  print(message.pdu.varbinds[0]); // outputs system description
}

Features and bugs #

TODO

  • Implement SNMP v1 / v2c
  • Implement SNMP v3

Please file feature requests and bugs at the issue tracker.

16
likes
0
pub points
71%
popularity

Publisher

unverified uploader

A dart library for communicating with simple network management protocol (snmp) enabled devices

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

asn1lib, logging

More

Packages that depend on dart_snmp