dart_snmp

Creator: coderz1093

Last updated:

0 purchases

dart_snmp Image
dart_snmp Images

Languages

Categories

Add to Cart

Description:

dart snmp

An snmp library for Dart developers.
Usage #
A simple usage example:
import 'dart:io';
import 'package:dart_snmp/dart_snmp.dart';

void main() async {
// Starting a session
var target = InternetAddress('192.168.1.1');
var session = await Snmp.createSession(target);

// Reading a parameter
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].value); // outputs system description

// Writing a parameter
var varbind = Varbind(
oid,
VarbindType.octetString,
'New system description',
); // create payload
await session.set(varbind); // send new system description to target
}
copied to clipboard
Features and bugs #
TODO

✅ Implement SNMP v1 / v2c
❌ Implement SNMP v3

Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.