snmp 1.3.2 → 1.3.3

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.
data/README.rdoc DELETED
@@ -1,206 +0,0 @@
1
- = SNMP Library for Ruby
2
- {<img src="https://travis-ci.com/hallidave/ruby-snmp.svg?branch=master" alt="Build Status" />}[https://travis-ci.com/hallidave/ruby-snmp]
3
- {<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License MIT" />}[https://raw.githubusercontent.com/hallidave/ruby-snmp/master/MIT-LICENSE]
4
- {<img src="https://badge.fury.io/rb/snmp.svg" alt="Gem Version" />}[https://badge.fury.io/rb/snmp]
5
-
6
- == Summary
7
-
8
- This library implements SNMP (the Simple Network Management Protocol). It is
9
- implemented in pure Ruby, so there are no dependencies on external libraries
10
- like net-snmp[http://www.net-snmp.org/]. You can run this library anywhere
11
- that Ruby can run.
12
-
13
- This release supports the following:
14
-
15
- * The GetRequest, GetNextRequest, GetBulkRequest, SetRequest, Response
16
- SNMPv1_Trap, SNMPv2_Trap, and Inform PDUs
17
- * All of the ASN.1 data types defined by SNMPv1 and SNMPv2c
18
- * Sending informs and v1 and v2 traps
19
- * Trap handling for informs and v1 and v2 traps
20
- * Symbolic OID values (ie. "ifTable" instead of "1.3.6.1.2.1.2.2") as
21
- parameters to the SNMP::Manager API
22
- * Includes symbol data files for all current IETF MIBs
23
- * Compatible with Ruby 1.9 and higher
24
-
25
- See the SNMP::Manager, SNMP::TrapListener, and SNMP::MIB classes and the
26
- examples below for more details.
27
-
28
- == Installation
29
-
30
- You can use RubyGems[http://rubygems.org/] to
31
- install the latest version of the SNMP library.
32
-
33
- gem install snmp
34
-
35
- == Examples
36
-
37
- === Get Request
38
-
39
- Retrieve a system description.
40
-
41
- require 'snmp'
42
-
43
- SNMP::Manager.open(:host => 'localhost') do |manager|
44
- response = manager.get(["sysDescr.0", "sysName.0"])
45
- response.each_varbind do |vb|
46
- puts "#{vb.name.to_s} #{vb.value.to_s} #{vb.value.asn1_type}"
47
- end
48
- end
49
-
50
- === Set Request
51
-
52
- Create a varbind for setting the system name.
53
-
54
- require 'snmp'
55
- include SNMP
56
-
57
- manager = Manager.new(:host => 'localhost')
58
- varbind = VarBind.new("1.3.6.1.2.1.1.5.0", OctetString.new("My System Name"))
59
- manager.set(varbind)
60
- manager.close
61
-
62
- === Table Walk
63
-
64
- Walk the ifTable.
65
-
66
- require 'snmp'
67
-
68
- ifTable_columns = ["ifIndex", "ifDescr", "ifInOctets", "ifOutOctets"]
69
- SNMP::Manager.open(:host => 'localhost') do |manager|
70
- manager.walk(ifTable_columns) do |row|
71
- row.each { |vb| print "\t#{vb.value}" }
72
- puts
73
- end
74
- end
75
-
76
- === Get-Next Request
77
-
78
- A more difficult way to walk the ifTable.
79
-
80
- require 'snmp'
81
- include SNMP
82
-
83
- Manager.open(:host => 'localhost') do |manager|
84
- ifTable = ObjectId.new("1.3.6.1.2.1.2.2")
85
- next_oid = ifTable
86
- while next_oid.subtree_of?(ifTable)
87
- response = manager.get_next(next_oid)
88
- varbind = response.varbind_list.first
89
- next_oid = varbind.name
90
- puts varbind.to_s
91
- end
92
- end
93
-
94
- === Get-Bulk Request
95
-
96
- Get interface description and admin status for 10 rows of the ifTable.
97
-
98
- require 'snmp'
99
- include SNMP
100
-
101
- ifDescr_OID = ObjectId.new("1.3.6.1.2.1.2.2.1.2")
102
- ifAdminStatus_OID = ObjectId.new("1.3.6.1.2.1.2.2.1.7")
103
- MAX_ROWS = 10
104
- Manager.open(:host => 'localhost') do |manager|
105
- response = manager.get_bulk(0, MAX_ROWS, [ifDescr_OID, ifAdminStatus_OID])
106
- list = response.varbind_list
107
- until list.empty?
108
- ifDescr = list.shift
109
- ifAdminStatus = list.shift
110
- puts "#{ifDescr.value} #{ifAdminStatus.value}"
111
- end
112
- end
113
-
114
- === Trap Handling
115
-
116
- Log traps to STDOUT.
117
-
118
- require 'snmp'
119
- require 'logger'
120
-
121
- log = Logger.new(STDOUT)
122
- m = SNMP::TrapListener.new do |manager|
123
- manager.on_trap_default do |trap|
124
- log.info trap.inspect
125
- end
126
- end
127
- m.join
128
-
129
- == Changes
130
-
131
- Changes for version 1.3.2:
132
- * Accept non-standard error status codes
133
-
134
- Changes for version 1.3.1:
135
- * Cleaned up deprecation warnings
136
- * Fixed SNMP::Integer#<=> method for Ruby 2.3.0 and later
137
- * Removed artificial limit on number of non-repeaters for GetBulkRequest
138
- * SNMP::BER module no longer pollutes global namespace
139
-
140
- Changes for version 1.2.0:
141
- * Removed support for Ruby 1.8
142
- * Changed license to MIT License
143
-
144
- Changes for version 1.1.1:
145
-
146
- * Incorporate various small pull requests
147
-
148
- Changes for version 1.1.0:
149
-
150
- * Added MIB support to ObjectId and Varbind, so that to_s can return symbolic information
151
- * Added to_str method to ObjectId to return a numeric OID string (old to_s behavior)
152
- * TrapListener can now support multiple community strings
153
-
154
- Changes for version 1.0.4:
155
-
156
- * New option handling and added lower-case versions of all options
157
- * Added SNMP::VERSION constant
158
- * Experimental support for IPv6
159
- * Removed support for installation with setup.rb
160
-
161
- Changes for version 1.0.3:
162
-
163
- * Minor changes to Manager class. The :Transport option may now be an
164
- object or a class. Explicity call Timeout.timeout so that a timeout
165
- method may be defined in subclasses. Thanks to Eric Monti.
166
-
167
- Changes for version 1.0.2:
168
-
169
- * Internal code changes to make this library compatible with both Ruby 1.8
170
- and Ruby 1.9. Note that an ord() method is now added to the Fixnum class
171
- for Ruby 1.8. See the ber.rb file for details.
172
-
173
- Changes for version 1.0.1:
174
-
175
- * Made the host configurable for the TrapListener. Previously defaulted
176
- to 'localhost'.
177
-
178
- Changes for version 1.0.0:
179
-
180
- * Added to_s method to TimeTicks. Displays time in human-readable form
181
- instead of just a number. The to_i method can still be used to get the
182
- number of ticks.
183
-
184
- == License
185
-
186
- This SNMP Library is released under the MIT License.
187
-
188
- Copyright (c) 2004-2014 David R. Halliday
189
-
190
- Permission is hereby granted, free of charge, to any person obtaining a copy
191
- of this software and associated documentation files (the "Software"), to deal
192
- in the Software without restriction, including without limitation the rights
193
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
194
- copies of the Software, and to permit persons to whom the Software is
195
- furnished to do so, subject to the following conditions:
196
-
197
- The above copyright notice and this permission notice shall be included in
198
- all copies or substantial portions of the Software.
199
-
200
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
201
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
202
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
203
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
204
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
205
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
206
- THE SOFTWARE.
data/test/if_table1.yaml DELETED
@@ -1,81 +0,0 @@
1
- ---
2
- -
3
- - 1.3.6.1.2.1.2.2.1.1
4
- - noSuchObject
5
- - SNMP::NoSuchObject
6
- -
7
- - 1.3.6.1.2.1.2.2.1.1.1
8
- - "1"
9
- - SNMP::Integer
10
- -
11
- - 1.3.6.1.2.1.2.2.1.2
12
- - noSuchObject
13
- - SNMP::NoSuchObject
14
- -
15
- - 1.3.6.1.2.1.2.2.1.2.1
16
- - lo0
17
- - SNMP::OctetString
18
- -
19
- - 1.3.6.1.2.1.2.2.1.3
20
- - noSuchObject
21
- - SNMP::NoSuchObject
22
- -
23
- - 1.3.6.1.2.1.2.2.1.4.1
24
- - "16384"
25
- - SNMP::Integer
26
- -
27
- - 1.3.6.1.2.1.2.2.1.5.1
28
- - "0"
29
- - SNMP::Gauge32
30
- -
31
- - 1.3.6.1.2.1.2.2.1.7.1
32
- - "1"
33
- - SNMP::Integer
34
- -
35
- - 1.3.6.1.2.1.2.2.1.8.1
36
- - "1"
37
- - SNMP::Integer
38
- -
39
- - 1.3.6.1.2.1.2.2.1.9.1
40
- - "0"
41
- - SNMP::TimeTicks
42
- -
43
- - 1.3.6.1.2.1.2.2.1.10.1
44
- - "18228208"
45
- - SNMP::Counter32
46
- -
47
- - 1.3.6.1.2.1.2.2.1.11.1
48
- - "141603"
49
- - SNMP::Counter32
50
- -
51
- - 1.3.6.1.2.1.2.2.1.12.1
52
- - "12738"
53
- - SNMP::Counter32
54
- -
55
- - 1.3.6.1.2.1.2.2.1.13.1
56
- - "0"
57
- - SNMP::Counter32
58
- -
59
- - 1.3.6.1.2.1.2.2.1.14.1
60
- - "0"
61
- - SNMP::Counter32
62
- -
63
- - 1.3.6.1.2.1.2.2.1.15.1
64
- - "0"
65
- - SNMP::Counter32
66
- -
67
- - 1.3.6.1.2.1.2.2.1.16.1
68
- - "18233800"
69
- - SNMP::Counter32
70
- -
71
- - 1.3.6.1.2.1.2.2.1.17.1
72
- - "154413"
73
- - SNMP::Counter32
74
- -
75
- - 1.3.6.1.2.1.2.2.1.18.1
76
- - "0"
77
- - SNMP::Counter32
78
- -
79
- - 1.3.6.1.2.1.2.2.1.20.1
80
- - "0"
81
- - SNMP::Counter32
data/test/if_table6.yaml DELETED
@@ -1,441 +0,0 @@
1
- ---
2
- -
3
- - 1.3.6.1.2.1.2.2.1.1
4
- - noSuchObject
5
- - SNMP::NoSuchObject
6
- -
7
- - 1.3.6.1.2.1.2.2.1.1.1
8
- - "1"
9
- - SNMP::Integer
10
- -
11
- - 1.3.6.1.2.1.2.2.1.1.2
12
- - "2"
13
- - SNMP::Integer
14
- -
15
- - 1.3.6.1.2.1.2.2.1.1.3
16
- - "3"
17
- - SNMP::Integer
18
- -
19
- - 1.3.6.1.2.1.2.2.1.1.4
20
- - "4"
21
- - SNMP::Integer
22
- -
23
- - 1.3.6.1.2.1.2.2.1.1.5
24
- - "5"
25
- - SNMP::Integer
26
- -
27
- - 1.3.6.1.2.1.2.2.1.1.6
28
- - "6"
29
- - SNMP::Integer
30
- -
31
- - 1.3.6.1.2.1.2.2.1.2
32
- - noSuchObject
33
- - SNMP::NoSuchObject
34
- -
35
- - 1.3.6.1.2.1.2.2.1.2.1
36
- - lo0
37
- - SNMP::OctetString
38
- -
39
- - 1.3.6.1.2.1.2.2.1.2.2
40
- - gif0
41
- - SNMP::OctetString
42
- -
43
- - 1.3.6.1.2.1.2.2.1.2.3
44
- - stf0
45
- - SNMP::OctetString
46
- -
47
- - 1.3.6.1.2.1.2.2.1.2.4
48
- - en0
49
- - SNMP::OctetString
50
- -
51
- - 1.3.6.1.2.1.2.2.1.2.5
52
- - en1
53
- - SNMP::OctetString
54
- -
55
- - 1.3.6.1.2.1.2.2.1.2.6
56
- - fw0
57
- - SNMP::OctetString
58
- -
59
- - 1.3.6.1.2.1.2.2.1.3.1
60
- - "24"
61
- - SNMP::Integer
62
- -
63
- - 1.3.6.1.2.1.2.2.1.3.2
64
- - "55"
65
- - SNMP::Integer
66
- -
67
- - 1.3.6.1.2.1.2.2.1.3.3
68
- - "57"
69
- - SNMP::Integer
70
- -
71
- - 1.3.6.1.2.1.2.2.1.3.4
72
- - "6"
73
- - SNMP::Integer
74
- -
75
- - 1.3.6.1.2.1.2.2.1.3.5
76
- - "6"
77
- - SNMP::Integer
78
- -
79
- - 1.3.6.1.2.1.2.2.1.3.6
80
- - "144"
81
- - SNMP::Integer
82
- -
83
- - 1.3.6.1.2.1.2.2.1.4.1
84
- - "16384"
85
- - SNMP::Integer
86
- -
87
- - 1.3.6.1.2.1.2.2.1.4.2
88
- - "1280"
89
- - SNMP::Integer
90
- -
91
- - 1.3.6.1.2.1.2.2.1.4.3
92
- - "1280"
93
- - SNMP::Integer
94
- -
95
- - 1.3.6.1.2.1.2.2.1.4.4
96
- - "1500"
97
- - SNMP::Integer
98
- -
99
- - 1.3.6.1.2.1.2.2.1.4.5
100
- - "1500"
101
- - SNMP::Integer
102
- -
103
- - 1.3.6.1.2.1.2.2.1.4.6
104
- - "4078"
105
- - SNMP::Integer
106
- -
107
- - 1.3.6.1.2.1.2.2.1.5.1
108
- - "0"
109
- - SNMP::Gauge32
110
- -
111
- - 1.3.6.1.2.1.2.2.1.5.2
112
- - "0"
113
- - SNMP::Gauge32
114
- -
115
- - 1.3.6.1.2.1.2.2.1.5.3
116
- - "0"
117
- - SNMP::Gauge32
118
- -
119
- - 1.3.6.1.2.1.2.2.1.5.4
120
- - "10000000"
121
- - SNMP::Gauge32
122
- -
123
- - 1.3.6.1.2.1.2.2.1.5.5
124
- - "10000000"
125
- - SNMP::Gauge32
126
- -
127
- - 1.3.6.1.2.1.2.2.1.5.6
128
- - "10000000"
129
- - SNMP::Gauge32
130
- -
131
- - 1.3.6.1.2.1.2.2.1.7.1
132
- - "1"
133
- - SNMP::Integer
134
- -
135
- - 1.3.6.1.2.1.2.2.1.7.2
136
- - "2"
137
- - SNMP::Integer
138
- -
139
- - 1.3.6.1.2.1.2.2.1.7.3
140
- - "2"
141
- - SNMP::Integer
142
- -
143
- - 1.3.6.1.2.1.2.2.1.7.4
144
- - "1"
145
- - SNMP::Integer
146
- -
147
- - 1.3.6.1.2.1.2.2.1.7.5
148
- - "1"
149
- - SNMP::Integer
150
- -
151
- - 1.3.6.1.2.1.2.2.1.7.6
152
- - "1"
153
- - SNMP::Integer
154
- -
155
- - 1.3.6.1.2.1.2.2.1.8.1
156
- - "1"
157
- - SNMP::Integer
158
- -
159
- - 1.3.6.1.2.1.2.2.1.8.2
160
- - "2"
161
- - SNMP::Integer
162
- -
163
- - 1.3.6.1.2.1.2.2.1.8.3
164
- - "2"
165
- - SNMP::Integer
166
- -
167
- - 1.3.6.1.2.1.2.2.1.8.4
168
- - "1"
169
- - SNMP::Integer
170
- -
171
- - 1.3.6.1.2.1.2.2.1.8.5
172
- - "1"
173
- - SNMP::Integer
174
- -
175
- - 1.3.6.1.2.1.2.2.1.8.6
176
- - "1"
177
- - SNMP::Integer
178
- -
179
- - 1.3.6.1.2.1.2.2.1.9.1
180
- - "0"
181
- - SNMP::TimeTicks
182
- -
183
- - 1.3.6.1.2.1.2.2.1.9.2
184
- - "0"
185
- - SNMP::TimeTicks
186
- -
187
- - 1.3.6.1.2.1.2.2.1.9.3
188
- - "0"
189
- - SNMP::TimeTicks
190
- -
191
- - 1.3.6.1.2.1.2.2.1.9.4
192
- - "0"
193
- - SNMP::TimeTicks
194
- -
195
- - 1.3.6.1.2.1.2.2.1.9.5
196
- - "0"
197
- - SNMP::TimeTicks
198
- -
199
- - 1.3.6.1.2.1.2.2.1.9.6
200
- - "0"
201
- - SNMP::TimeTicks
202
- -
203
- - 1.3.6.1.2.1.2.2.1.10.1
204
- - "18228208"
205
- - SNMP::Counter32
206
- -
207
- - 1.3.6.1.2.1.2.2.1.10.2
208
- - "0"
209
- - SNMP::Counter32
210
- -
211
- - 1.3.6.1.2.1.2.2.1.10.3
212
- - "0"
213
- - SNMP::Counter32
214
- -
215
- - 1.3.6.1.2.1.2.2.1.10.4
216
- - "561918678"
217
- - SNMP::Counter32
218
- -
219
- - 1.3.6.1.2.1.2.2.1.10.5
220
- - "0"
221
- - SNMP::Counter32
222
- -
223
- - 1.3.6.1.2.1.2.2.1.10.6
224
- - "0"
225
- - SNMP::Counter32
226
- -
227
- - 1.3.6.1.2.1.2.2.1.11.1
228
- - "141603"
229
- - SNMP::Counter32
230
- -
231
- - 1.3.6.1.2.1.2.2.1.11.2
232
- - "0"
233
- - SNMP::Counter32
234
- -
235
- - 1.3.6.1.2.1.2.2.1.11.3
236
- - "0"
237
- - SNMP::Counter32
238
- -
239
- - 1.3.6.1.2.1.2.2.1.11.4
240
- - "544419"
241
- - SNMP::Counter32
242
- -
243
- - 1.3.6.1.2.1.2.2.1.11.5
244
- - "0"
245
- - SNMP::Counter32
246
- -
247
- - 1.3.6.1.2.1.2.2.1.11.6
248
- - "0"
249
- - SNMP::Counter32
250
- -
251
- - 1.3.6.1.2.1.2.2.1.12.1
252
- - "12738"
253
- - SNMP::Counter32
254
- -
255
- - 1.3.6.1.2.1.2.2.1.12.2
256
- - "0"
257
- - SNMP::Counter32
258
- -
259
- - 1.3.6.1.2.1.2.2.1.12.3
260
- - "0"
261
- - SNMP::Counter32
262
- -
263
- - 1.3.6.1.2.1.2.2.1.12.4
264
- - "159"
265
- - SNMP::Counter32
266
- -
267
- - 1.3.6.1.2.1.2.2.1.12.5
268
- - "0"
269
- - SNMP::Counter32
270
- -
271
- - 1.3.6.1.2.1.2.2.1.12.6
272
- - "0"
273
- - SNMP::Counter32
274
- -
275
- - 1.3.6.1.2.1.2.2.1.13.1
276
- - "0"
277
- - SNMP::Counter32
278
- -
279
- - 1.3.6.1.2.1.2.2.1.13.2
280
- - "0"
281
- - SNMP::Counter32
282
- -
283
- - 1.3.6.1.2.1.2.2.1.13.3
284
- - "0"
285
- - SNMP::Counter32
286
- -
287
- - 1.3.6.1.2.1.2.2.1.13.4
288
- - "0"
289
- - SNMP::Counter32
290
- -
291
- - 1.3.6.1.2.1.2.2.1.13.5
292
- - "0"
293
- - SNMP::Counter32
294
- -
295
- - 1.3.6.1.2.1.2.2.1.13.6
296
- - "0"
297
- - SNMP::Counter32
298
- -
299
- - 1.3.6.1.2.1.2.2.1.14.1
300
- - "0"
301
- - SNMP::Counter32
302
- -
303
- - 1.3.6.1.2.1.2.2.1.14.2
304
- - "0"
305
- - SNMP::Counter32
306
- -
307
- - 1.3.6.1.2.1.2.2.1.14.3
308
- - "0"
309
- - SNMP::Counter32
310
- -
311
- - 1.3.6.1.2.1.2.2.1.14.4
312
- - "0"
313
- - SNMP::Counter32
314
- -
315
- - 1.3.6.1.2.1.2.2.1.14.5
316
- - "0"
317
- - SNMP::Counter32
318
- -
319
- - 1.3.6.1.2.1.2.2.1.14.6
320
- - "0"
321
- - SNMP::Counter32
322
- -
323
- - 1.3.6.1.2.1.2.2.1.15.1
324
- - "0"
325
- - SNMP::Counter32
326
- -
327
- - 1.3.6.1.2.1.2.2.1.15.2
328
- - "0"
329
- - SNMP::Counter32
330
- -
331
- - 1.3.6.1.2.1.2.2.1.15.3
332
- - "0"
333
- - SNMP::Counter32
334
- -
335
- - 1.3.6.1.2.1.2.2.1.15.4
336
- - "0"
337
- - SNMP::Counter32
338
- -
339
- - 1.3.6.1.2.1.2.2.1.15.5
340
- - "0"
341
- - SNMP::Counter32
342
- -
343
- - 1.3.6.1.2.1.2.2.1.15.6
344
- - "0"
345
- - SNMP::Counter32
346
- -
347
- - 1.3.6.1.2.1.2.2.1.16.1
348
- - "18233800"
349
- - SNMP::Counter32
350
- -
351
- - 1.3.6.1.2.1.2.2.1.16.2
352
- - "0"
353
- - SNMP::Counter32
354
- -
355
- - 1.3.6.1.2.1.2.2.1.16.3
356
- - "0"
357
- - SNMP::Counter32
358
- -
359
- - 1.3.6.1.2.1.2.2.1.16.4
360
- - "68141195"
361
- - SNMP::Counter32
362
- -
363
- - 1.3.6.1.2.1.2.2.1.16.5
364
- - "342"
365
- - SNMP::Counter32
366
- -
367
- - 1.3.6.1.2.1.2.2.1.16.6
368
- - "346"
369
- - SNMP::Counter32
370
- -
371
- - 1.3.6.1.2.1.2.2.1.17.1
372
- - "154413"
373
- - SNMP::Counter32
374
- -
375
- - 1.3.6.1.2.1.2.2.1.17.2
376
- - "0"
377
- - SNMP::Counter32
378
- -
379
- - 1.3.6.1.2.1.2.2.1.17.3
380
- - "0"
381
- - SNMP::Counter32
382
- -
383
- - 1.3.6.1.2.1.2.2.1.17.4
384
- - "351526"
385
- - SNMP::Counter32
386
- -
387
- - 1.3.6.1.2.1.2.2.1.17.5
388
- - "0"
389
- - SNMP::Counter32
390
- -
391
- - 1.3.6.1.2.1.2.2.1.17.6
392
- - "0"
393
- - SNMP::Counter32
394
- -
395
- - 1.3.6.1.2.1.2.2.1.18.1
396
- - "0"
397
- - SNMP::Counter32
398
- -
399
- - 1.3.6.1.2.1.2.2.1.18.2
400
- - "0"
401
- - SNMP::Counter32
402
- -
403
- - 1.3.6.1.2.1.2.2.1.18.3
404
- - "0"
405
- - SNMP::Counter32
406
- -
407
- - 1.3.6.1.2.1.2.2.1.18.4
408
- - "0"
409
- - SNMP::Counter32
410
- -
411
- - 1.3.6.1.2.1.2.2.1.18.5
412
- - "0"
413
- - SNMP::Counter32
414
- -
415
- - 1.3.6.1.2.1.2.2.1.18.6
416
- - "0"
417
- - SNMP::Counter32
418
- -
419
- - 1.3.6.1.2.1.2.2.1.20.1
420
- - "0"
421
- - SNMP::Counter32
422
- -
423
- - 1.3.6.1.2.1.2.2.1.20.2
424
- - "0"
425
- - SNMP::Counter32
426
- -
427
- - 1.3.6.1.2.1.2.2.1.20.3
428
- - "0"
429
- - SNMP::Counter32
430
- -
431
- - 1.3.6.1.2.1.2.2.1.20.4
432
- - "0"
433
- - SNMP::Counter32
434
- -
435
- - 1.3.6.1.2.1.2.2.1.20.5
436
- - "0"
437
- - SNMP::Counter32
438
- -
439
- - 1.3.6.1.2.1.2.2.1.20.6
440
- - "0"
441
- - SNMP::Counter32