dart_snmp 1.0.0-dev dart_snmp: ^1.0.0-dev copied to clipboard
An snmp library for dart
An snmp library for Dart developers.
Created from templates made available by Stagehand under a BSD-style license.
Usage #
A simple usage example:
import 'package:dart_snmp/dart_snmp.dart';
main() async {
var session = await Snmp.createSession(InternetAddress('192.168.1.1'), port: 161);
var message = await session.get(Oid.fromString('1.3.6.1.2.1.1.1.0')); // sysDesc
print(message.pdu.varbinds[0]);
}
Features and bugs #
Please file feature requests and bugs at the issue tracker.