2015-03-04 20:55:53 +01:00
|
|
|
|
|
|
|
module.exports = function(RED) {
|
2015-03-26 19:55:03 +01:00
|
|
|
"use strict";
|
2016-04-12 20:18:48 +02:00
|
|
|
var snmp = require("net-snmp");
|
2015-03-04 20:55:53 +01:00
|
|
|
|
|
|
|
function SnmpNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.community = n.community || "public";
|
|
|
|
this.host = n.host || "127.0.0.1";
|
|
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
|
|
this.oids = n.oids.replace(/\s/g,"");
|
2016-04-12 20:18:48 +02:00
|
|
|
this.session = snmp.createSession(this.host, this.community, {version: this.version});
|
2015-03-04 20:55:53 +01:00
|
|
|
var node = this;
|
|
|
|
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
var oids = node.oids || msg.oid;
|
|
|
|
if (oids) {
|
|
|
|
node.session.get(oids.split(","), function(error, varbinds) {
|
|
|
|
if (error) {
|
2016-04-12 20:18:48 +02:00
|
|
|
node.error(error.toString(),msg);
|
2015-03-04 20:55:53 +01:00
|
|
|
} else {
|
|
|
|
for (var i = 0; i < varbinds.length; i++) {
|
2016-04-12 20:18:48 +02:00
|
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
|
|
node.error(snmp.varbindError(varbinds[i]),msg);
|
2015-03-04 20:55:53 +01:00
|
|
|
}
|
|
|
|
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 SnmpTNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.community = n.community || "public";
|
|
|
|
this.host = n.host || "127.0.0.1";
|
|
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
|
|
this.oids = n.oids.replace(/\s/g,"");
|
2016-04-12 20:18:48 +02:00
|
|
|
this.session = snmp.createSession(this.host, this.community, {version: this.version});
|
2015-03-04 20:55:53 +01:00
|
|
|
var node = this;
|
2016-04-09 19:00:14 +02:00
|
|
|
var msg;
|
2015-03-04 20:55:53 +01:00
|
|
|
var maxRepetitions = 20;
|
|
|
|
|
2016-04-12 20:18:48 +02:00
|
|
|
function sortInt(a, b) {
|
2015-03-26 19:55:03 +01:00
|
|
|
if (a > b) { return 1; }
|
|
|
|
else if (b > a) { return -1; }
|
|
|
|
else { return 0; }
|
2015-03-04 20:55:53 +01:00
|
|
|
}
|
|
|
|
|
2016-04-12 20:18:48 +02:00
|
|
|
function responseCb(error, table) {
|
2015-03-04 20:55:53 +01:00
|
|
|
if (error) {
|
2016-09-01 12:17:18 +02:00
|
|
|
le.error(error.toString());
|
2015-03-04 20:55:53 +01:00
|
|
|
} else {
|
|
|
|
var indexes = [];
|
2015-03-26 19:55:03 +01:00
|
|
|
for (var index in table) {
|
|
|
|
if (table.hasOwnProperty(index)) {
|
2016-04-12 20:18:48 +02:00
|
|
|
indexes.push(parseInt(index));
|
2015-03-26 19:55:03 +01:00
|
|
|
}
|
|
|
|
}
|
2016-04-12 20:18:48 +02:00
|
|
|
indexes.sort(sortInt);
|
2015-03-04 20:55:53 +01:00
|
|
|
for (var i = 0; i < indexes.length; i++) {
|
|
|
|
var columns = [];
|
2015-03-26 19:55:03 +01:00
|
|
|
for (var column in table[indexes[i]]) {
|
|
|
|
if (table[indexes[i]].hasOwnProperty(column)) {
|
2016-04-12 20:18:48 +02:00
|
|
|
columns.push(parseInt(column));
|
2015-03-26 19:55:03 +01:00
|
|
|
}
|
|
|
|
}
|
2015-03-04 20:55:53 +01:00
|
|
|
columns.sort(sortInt);
|
2016-09-01 12:17:18 +02:00
|
|
|
// console.log("row index = " + indexes[i]);
|
|
|
|
// for (var j = 0; j < columns.length; j++) {
|
|
|
|
// console.log(" column " + columns[j] + " = " + table[indexes[i]][columns[j]]);
|
|
|
|
// }
|
2015-03-04 20:55:53 +01:00
|
|
|
}
|
|
|
|
msg.payload = table;
|
|
|
|
node.send(msg);
|
|
|
|
}
|
|
|
|
}
|
2016-04-12 20:18:48 +02:00
|
|
|
|
2016-04-09 19:00:14 +02:00
|
|
|
this.on("input",function(m) {
|
|
|
|
msg = m;
|
2015-03-04 20:55:53 +01:00
|
|
|
var oids = node.oids || msg.oid;
|
|
|
|
if (oids) {
|
2016-02-11 23:50:30 +01:00
|
|
|
msg.oid = oids;
|
2015-03-04 20:55:53 +01:00
|
|
|
node.session.table(oids, maxRepetitions, responseCb);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
node.warn("No oid to search for");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("snmp table",SnmpTNode);
|
2016-04-12 20:18:48 +02:00
|
|
|
|
|
|
|
function SnmpSubtreeNode(n) {
|
2016-04-12 19:39:19 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.community = n.community || "public";
|
|
|
|
this.host = n.host || "127.0.0.1";
|
|
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
|
|
this.oids = n.oids.replace(/\s/g,"");
|
2016-04-12 20:18:48 +02:00
|
|
|
this.session = snmp.createSession(this.host, this.community, {version: this.version});
|
2016-04-12 19:39:19 +02:00
|
|
|
var node = this;
|
|
|
|
var maxRepetitions = 20;
|
2016-04-12 20:18:48 +02:00
|
|
|
var response = [];
|
|
|
|
|
|
|
|
function doneCb(error) {
|
|
|
|
if (error) {
|
|
|
|
console.error(error.toString());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var msg = {};
|
|
|
|
msg.payload = response;
|
|
|
|
node.send(msg);
|
|
|
|
response.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedCb(varbinds) {
|
|
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
|
|
node.error(snmp.varbindError(varbinds[i]));
|
|
|
|
}
|
|
|
|
else {
|
2016-09-01 12:17:18 +02:00
|
|
|
//console.log(varbinds[i].oid + "|" + varbinds[i].value);
|
2016-04-12 20:18:48 +02:00
|
|
|
response.add({oid: varbinds[i].oid, value: varbinds[i].value});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-12 19:39:19 +02:00
|
|
|
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
var oids = node.oids || msg.oid;
|
|
|
|
if (oids) {
|
|
|
|
msg.oid = oids;
|
2016-04-12 20:18:48 +02:00
|
|
|
node.session.subtree(msg.oid, maxRepetitions, feedCb, doneCb);
|
2016-04-12 19:39:19 +02:00
|
|
|
//node.session.subtree(oids, maxRepetitions, responseCb);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
node.warn("No oid to search for");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("snmp subtree",SnmpSubtreeNode);
|
2016-04-12 20:18:48 +02:00
|
|
|
|
|
|
|
function SnmpWalkerNode(n) {
|
2016-04-12 19:39:19 +02:00
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
this.community = n.community || "public";
|
|
|
|
this.host = n.host || "127.0.0.1";
|
|
|
|
this.version = (n.version === "2c") ? snmp.Version2c : snmp.Version1;
|
|
|
|
this.oids = n.oids.replace(/\s/g,"");
|
2016-04-12 20:18:48 +02:00
|
|
|
this.session = snmp.createSession(this.host, this.community, {version: this.version});
|
2016-04-12 19:39:19 +02:00
|
|
|
var node = this;
|
|
|
|
var maxRepetitions = 20;
|
2016-04-12 20:18:48 +02:00
|
|
|
var response = [];
|
|
|
|
|
|
|
|
function doneCb(error) {
|
|
|
|
if (error) {
|
|
|
|
node.error(error.toString());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var msg = {};
|
|
|
|
msg.payload = response;
|
|
|
|
node.send(msg);
|
|
|
|
response.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedCb(varbinds) {
|
|
|
|
for (var i = 0; i < varbinds.length; i++) {
|
|
|
|
if (snmp.isVarbindError(varbinds[i])) {
|
|
|
|
node.error(snmp.varbindError(varbinds[i]));
|
|
|
|
}
|
|
|
|
else {
|
2016-09-01 12:17:18 +02:00
|
|
|
//console.log(varbinds[i].oid + "|" + varbinds[i].value);
|
2016-04-12 20:18:48 +02:00
|
|
|
response.add({oid: varbinds[i].oid, value: varbinds[i].value});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-12 19:39:19 +02:00
|
|
|
|
|
|
|
this.on("input",function(msg) {
|
|
|
|
var oids = node.oids || msg.oid;
|
|
|
|
if (oids) {
|
|
|
|
msg.oid = oids;
|
2016-04-12 20:18:48 +02:00
|
|
|
node.session.walk(msg.oid, maxRepetitions, feedCb, doneCb);
|
2016-04-12 19:39:19 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
node.warn("No oid to search for");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("snmp walker",SnmpWalkerNode);
|
2016-04-12 20:18:48 +02:00
|
|
|
};
|