net-snmp 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1296 -1296
- package/example/cisco-device-inventory.js +140 -140
- package/example/snmp-get-bulk.js +53 -53
- package/example/snmp-get-next.js +30 -30
- package/example/snmp-get.js +30 -30
- package/example/snmp-inform.js +32 -32
- package/example/snmp-set.js +31 -31
- package/example/snmp-subtree.js +37 -37
- package/example/snmp-table-columns.js +61 -61
- package/example/snmp-table.js +56 -56
- package/example/snmp-tail.js +34 -34
- package/example/snmp-trap.js +32 -32
- package/example/snmp-walk.js +37 -37
- package/example/specify-source-address-and-port.js +41 -41
- package/example/specify-sysuptime-to-inform.js +34 -34
- package/example/specify-sysuptime-to-trap.js +35 -35
- package/index.js +1464 -1464
- package/package.json +43 -39
- package/ref/rfc/v1/rfc1065.txt +1178 -1178
- package/ref/rfc/v1/rfc1066.txt +5042 -5042
- package/ref/rfc/v1/rfc1067.txt +1850 -1850
- package/ref/rfc/v1/rfc1098.txt +1906 -1906
- package/ref/rfc/v1/rfc1155.txt +1234 -1234
- package/ref/rfc/v2c/rfc1908.txt +563 -563
- package/ref/rfc/v2c/rfc2578.txt +2541 -2541
- package/ref/rfc/v2c/rfc3416.txt +1739 -1739
- package/test/varbinds.js +42 -42
package/package.json
CHANGED
@@ -1,39 +1,43 @@
|
|
1
|
-
{
|
2
|
-
"name": "net-snmp",
|
3
|
-
"version": "1.2.
|
4
|
-
"description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",
|
5
|
-
"main": "index.js",
|
6
|
-
"directories": {
|
7
|
-
"example": "example"
|
8
|
-
},
|
9
|
-
"dependencies": {
|
10
|
-
"asn1-ber": "*"
|
11
|
-
},
|
12
|
-
"contributors": [
|
13
|
-
{
|
14
|
-
"name": "Stephen Vickers",
|
15
|
-
"email": "stephen.vickers@nospaceships.com"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"name": "NoSpaceships Ltd",
|
19
|
-
"email": "hello@nospaceships.com"
|
20
|
-
}
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"
|
29
|
-
|
30
|
-
|
31
|
-
"
|
32
|
-
"
|
33
|
-
"
|
34
|
-
"
|
35
|
-
"
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
1
|
+
{
|
2
|
+
"name": "net-snmp",
|
3
|
+
"version": "1.2.5",
|
4
|
+
"description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",
|
5
|
+
"main": "index.js",
|
6
|
+
"directories": {
|
7
|
+
"example": "example"
|
8
|
+
},
|
9
|
+
"dependencies": {
|
10
|
+
"asn1-ber": "*"
|
11
|
+
},
|
12
|
+
"contributors": [
|
13
|
+
{
|
14
|
+
"name": "Stephen Vickers",
|
15
|
+
"email": "stephen.vickers@nospaceships.com"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"name": "NoSpaceships Ltd",
|
19
|
+
"email": "hello@nospaceships.com"
|
20
|
+
},
|
21
|
+
{
|
22
|
+
"name": "Mark Abrahams",
|
23
|
+
"email": "mark@abrahams.co.nz"
|
24
|
+
}
|
25
|
+
],
|
26
|
+
"repository": {
|
27
|
+
"type": "git",
|
28
|
+
"url": "git://github.com/markabrahams/node-net-snmp.git"
|
29
|
+
},
|
30
|
+
"keywords": [
|
31
|
+
"snmp",
|
32
|
+
"snmpv1",
|
33
|
+
"snmpv2",
|
34
|
+
"snmpv2c",
|
35
|
+
"net",
|
36
|
+
"network",
|
37
|
+
"mon",
|
38
|
+
"monitor",
|
39
|
+
"monitoring"
|
40
|
+
],
|
41
|
+
"author": "Mark Abrahams <mark@abrahams.co.nz>",
|
42
|
+
"license": "MIT"
|
43
|
+
}
|