mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
24b0cd60bb
* snmp set node * updated readme * readme * added missing {} * corrected naming in variables, removed unused ones * Use snmpObjectType to map types in SnmpSNode * added varbinds as node property * edit priority between node and message * edit help * updated doc * try catch JSON.parse§ * corrected typo in html * Error message in case of JSON parsing error * removing try/catch on JSON.parse for varbinds, as a wrong varbinds will be catched/handled in Session.set() method * edit doc for better presentation
251 lines
9.3 KiB
JavaScript
251 lines
9.3 KiB
JavaScript
|
|
module.exports = function (RED) {
|
|
"use strict";
|
|
var snmp = require("net-snmp");
|
|
|
|
var sessions = {};
|
|
|
|
function getSession(host, community, version) {
|
|
var sessionKey = host + ":" + community + ":" + version;
|
|
if (!(sessionKey in sessions)) {
|
|
sessions[sessionKey] = snmp.createSession(host, community, { version: version });
|
|
}
|
|
return sessions[sessionKey];
|
|
}
|
|
|
|
function SnmpNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.community = n.community;
|
|
this.host = n.host;
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
this.oids = n.oids.replace(/\s/g, "");
|
|
var node = this;
|
|
|
|
this.on("input", function (msg) {
|
|
var host = node.host || msg.host;
|
|
var community = node.community || msg.community;
|
|
var oids = node.oids || msg.oid;
|
|
if (oids) {
|
|
getSession(host, community, node.version).get(oids.split(","), function (error, varbinds) {
|
|
if (error) {
|
|
node.error(error.toString(), msg);
|
|
}
|
|
else {
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
node.error(snmp.varbindError(varbinds[i]), msg);
|
|
}
|
|
else {
|
|
if (varbinds[i].type == 4) { varbinds[i].value = varbinds[i].value.toString(); }
|
|
varbinds[i].tstr = snmp.ObjectType[varbinds[i].type];
|
|
//node.log(varbinds[i].oid + "|" + varbinds[i].tstr + "|" + varbinds[i].value);
|
|
}
|
|
}
|
|
msg.oid = oids;
|
|
msg.payload = varbinds;
|
|
node.send(msg);
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
node.warn("No oid(s) to search for");
|
|
}
|
|
});
|
|
}
|
|
RED.nodes.registerType("snmp", SnmpNode);
|
|
|
|
|
|
function SnmpSNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.community = n.community;
|
|
this.host = n.host;
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
this.varbinds = n.varbinds;
|
|
var node = this;
|
|
this.on("input", function (msg) {
|
|
var host = node.host || msg.host;
|
|
var community = node.community || msg.community;
|
|
var varbinds = (node.varbinds) ? JSON.parse(node.varbinds) : msg.varbinds;
|
|
if (varbinds) {
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
varbinds[i].type = snmp.ObjectType[varbinds[i].type];
|
|
}
|
|
getSession(host, community, node.version).set(varbinds, function (error, varbinds) {
|
|
if (error) {
|
|
node.error(error.toString(), msg);
|
|
}
|
|
else {
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
// for version 2c we must check each OID for an error condition
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
node.error(snmp.varbindError(varbinds[i]), msg);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
node.warn("No varbinds to set");
|
|
}
|
|
});
|
|
|
|
}
|
|
RED.nodes.registerType("snmp set", SnmpSNode);
|
|
|
|
|
|
|
|
|
|
function SnmpTNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.community = n.community;
|
|
this.host = n.host;
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
this.oids = n.oids.replace(/\s/g, "");
|
|
var node = this;
|
|
var maxRepetitions = 20;
|
|
|
|
function sortInt(a, b) {
|
|
if (a > b) { return 1; }
|
|
else if (b > a) { return -1; }
|
|
else { return 0; }
|
|
}
|
|
|
|
this.on("input", function (msg) {
|
|
var host = node.host || msg.host;
|
|
var community = node.community || msg.community;
|
|
var oids = node.oids || msg.oid;
|
|
if (oids) {
|
|
msg.oid = oids;
|
|
getSession(host, community, node.version).table(oids, maxRepetitions, function (error, table) {
|
|
if (error) {
|
|
node.error(error.toString(), msg);
|
|
}
|
|
else {
|
|
var indexes = [];
|
|
for (var index in table) {
|
|
if (table.hasOwnProperty(index)) {
|
|
indexes.push(parseInt(index));
|
|
}
|
|
}
|
|
indexes.sort(sortInt);
|
|
for (var i = 0; i < indexes.length; i++) {
|
|
var columns = [];
|
|
for (var column in table[indexes[i]]) {
|
|
if (table[indexes[i]].hasOwnProperty(column)) {
|
|
columns.push(parseInt(column));
|
|
}
|
|
}
|
|
columns.sort(sortInt);
|
|
// console.log("row index = " + indexes[i]);
|
|
// for (var j = 0; j < columns.length; j++) {
|
|
// console.log(" column " + columns[j] + " = " + table[indexes[i]][columns[j]]);
|
|
// }
|
|
}
|
|
msg.payload = table;
|
|
node.send(msg);
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
node.warn("No oid to search for");
|
|
}
|
|
});
|
|
}
|
|
RED.nodes.registerType("snmp table", SnmpTNode);
|
|
|
|
function SnmpSubtreeNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.community = n.community;
|
|
this.host = n.host;
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
this.oids = n.oids.replace(/\s/g, "");
|
|
var node = this;
|
|
var maxRepetitions = 20;
|
|
var response = [];
|
|
|
|
function feedCb(varbinds) {
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
node.error(snmp.varbindError(varbinds[i]), msg);
|
|
}
|
|
else {
|
|
//console.log(varbinds[i].oid + "|" + varbinds[i].value);
|
|
response.push({ oid: varbinds[i].oid, value: varbinds[i].value });
|
|
}
|
|
}
|
|
}
|
|
|
|
this.on("input", function (msg) {
|
|
var host = node.host || msg.host;
|
|
var community = node.community || msg.community;
|
|
var oids = node.oids || msg.oid;
|
|
if (oids) {
|
|
msg.oid = oids;
|
|
getSession(host, community, node.version).subtree(msg.oid, maxRepetitions, feedCb, function (error) {
|
|
if (error) {
|
|
node.error(error.toString(), msg);
|
|
}
|
|
else {
|
|
msg.payload = response;
|
|
node.send(msg);
|
|
//Clears response
|
|
response.length = 0;
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
node.warn("No oid to search for");
|
|
}
|
|
});
|
|
}
|
|
RED.nodes.registerType("snmp subtree", SnmpSubtreeNode);
|
|
|
|
function SnmpWalkerNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.community = n.community;
|
|
this.host = n.host;
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
this.oids = n.oids.replace(/\s/g, "");
|
|
var node = this;
|
|
var maxRepetitions = 20;
|
|
var response = [];
|
|
|
|
function feedCb(varbinds) {
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
node.error(snmp.varbindError(varbinds[i]), msg);
|
|
}
|
|
else {
|
|
//console.log(varbinds[i].oid + "|" + varbinds[i].value);
|
|
response.push({ oid: varbinds[i].oid, value: varbinds[i].value });
|
|
}
|
|
}
|
|
}
|
|
|
|
this.on("input", function (msg) {
|
|
node.msg = msg;
|
|
var oids = node.oids || msg.oid;
|
|
var host = node.host || msg.host;
|
|
var community = node.community || msg.community;
|
|
if (oids) {
|
|
msg.oid = oids;
|
|
getSession(host, community, node.version).walk(msg.oid, maxRepetitions, feedCb, function (error) {
|
|
if (error) {
|
|
node.error(error.toString(), msg);
|
|
}
|
|
else {
|
|
msg.payload = response;
|
|
node.send(msg);
|
|
//Clears response
|
|
response.length = 0;
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
node.warn("No oid to search for");
|
|
}
|
|
});
|
|
}
|
|
RED.nodes.registerType("snmp walker", SnmpWalkerNode);
|
|
};
|