1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
|
IGNITENET-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Counter64, IpAddress,
enterprises FROM SNMPv2-SMI
DisplayString, TruthValue, MacAddress FROM SNMPv2-TC
OBJECT-GROUP FROM SNMPv2-CONF;
ignitenetMIB MODULE-IDENTITY
LAST-UPDATED "201602240000Z"
ORGANIZATION "IgniteNet"
CONTACT-INFO "support@ignitenet.com"
DESCRIPTION "The MIB module for IgniteNet entities"
REVISION "201602240000Z"
DESCRIPTION "Initial revision"
::= { ignitenet 1 }
ignitenet OBJECT IDENTIFIER ::= { enterprises 47307 }
product OBJECT IDENTIFIER ::= { ignitenetMIB 1 }
ethernetPorts OBJECT IDENTIFIER ::= { ignitenetMIB 2 }
radios OBJECT IDENTIFIER ::= { ignitenetMIB 3 }
metrolinqRadios OBJECT IDENTIFIER ::= { ignitenetMIB 4 }
-- ===========================================================
-- IgniteNet product descriptions
-- ===========================================================
model OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Model of the IgniteNet product"
::= { product 1 }
hwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware version of the IgniteNet product"
::= { product 2 }
fwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Firmware version of the IgniteNet product"
::= { product 3 }
-- ===========================================================
-- IgniteNet ethernet ports info descriptions
-- ===========================================================
ethNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ethernet ports (regardless of their
current state) present on this system."
::= { ethernetPorts 1 }
-- Ethernet Info Table
ethInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EthInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ethernet ports. The number of entries is
given by the value of ethNumber."
::= { ethernetPorts 2 }
ethInfoEntry OBJECT-TYPE
SYNTAX EthInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing ethernet port status information."
INDEX { ethNumber }
::= { ethInfoTable 1 }
EthInfoEntry ::=
SEQUENCE {
ethInfoIndex EthernetIndex,
ethDescr DisplayString,
ethInfoSpeed Integer32,
ethInfoDuplex INTEGER
}
ethInfoIndex OBJECT-TYPE
SYNTAX EthernetIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each radio, starting from one."
::= { ethInfoEntry 1 }
ethDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ethernet speed in MB/s"
::= { ethInfoEntry 2 }
ethInfoSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ethernet speed in MB/s"
::= { ethInfoEntry 3 }
ethInfoDuplex OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
half(1),
full(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ethernet speed in MB/s"
::= { ethInfoEntry 4 }
-- ===========================================================
-- IgniteNet MetroLinq radio info descriptions
-- ===========================================================
mlRadioNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of radios (regardless of their
current state) present on this system."
::= { metrolinqRadios 1 }
-- Radio info table
mlRadioInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF MlRadioInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of radio entries. The number of entries is
given by the value of radioNumber."
::= { metrolinqRadios 2 }
mlRadioInfoEntry OBJECT-TYPE
SYNTAX MlRadioInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX { mlRadioNumber }
::= { mlRadioInfoTable 1 }
MlRadioInfoEntry ::=
SEQUENCE {
mlRadioInfoIndex RadioIndex,
mlRadioInfoEnabled INTEGER,
mlRadioInfoRegDomain DisplayString,
mlRadioInfoFrequency FrequencyGHz,
mlRadioInfomcs RadioMcsRate,
mlRadioInfoAckTimeout Integer32,
mlRadioInfoTxPower Integer32,
mlRadioInfoAMSDU INTEGER,
mlRadioInfoAMPDU INTEGER,
mlRadioInfoRSSILocal Integer32,
mlRadioInfoRSSIRemote Integer32,
mlRadioInfoEncryption INTEGER,
mlRadioInfoSSID DisplayString,
mlRadioInfoFailover INTEGER
}
mlRadioInfoIndex OBJECT-TYPE
SYNTAX RadioIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each radio, starting from one."
::= { mlRadioInfoEntry 1 }
mlRadioInfoEnabled OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1) -- ready to pass packets
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The enabled or disabled state of the radio."
::= { mlRadioInfoEntry 2 }
mlRadioInfoRegDomain OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Regulation domain set for the radio."
::= { mlRadioInfoEntry 3 }
mlRadioInfoFrequency OBJECT-TYPE
SYNTAX FrequencyGHz
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frequency, raw value expressed in MHz, displayed in GHz"
::= { mlRadioInfoEntry 4 }
mlRadioInfomcs OBJECT-TYPE
SYNTAX RadioMcsRate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of the radio Modulation and Coding Scheme"
::= { mlRadioInfoEntry 5 }
mlRadioInfoAckTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio ack timeout in µs"
::= { mlRadioInfoEntry 6 }
mlRadioInfoTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio transmission power in dBm"
::= { mlRadioInfoEntry 7 }
mlRadioInfoAMSDU OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio frame aggregation with MAC Service Data Unit"
::= { mlRadioInfoEntry 8 }
mlRadioInfoAMPDU OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio frame aggregation with MAC Protocol Data Unit"
::= { mlRadioInfoEntry 9 }
mlRadioInfoRSSILocal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio received signal strength indicator of the local site"
::= { mlRadioInfoEntry 10 }
mlRadioInfoRSSIRemote OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radio received signal strength indicator of the remote site"
::= { mlRadioInfoEntry 11 }
mlRadioInfoEncryption OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Encryption use on the radio"
::= { mlRadioInfoEntry 12 }
mlRadioInfoSSID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Setting to failover to 5 GHz radio if 60 GHz is not available or out of range."
::= { mlRadioInfoEntry 13 }
mlRadioInfoFailover OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Setting to failover to 5 GHz radio if 60 GHz is not available or out of range."
::= { mlRadioInfoEntry 14 }
-- Radio Status table
mlRadioStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF MlRadioStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of radio entries. The number of entries is
given by the value of radioNumber."
::= { metrolinqRadios 3 }
mlRadioStatusEntry OBJECT-TYPE
SYNTAX MlRadioStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing radio status information."
INDEX { mlRadioNumber }
::= { mlRadioStatusTable 1 }
MlRadioStatusEntry ::=
SEQUENCE {
mlRadioStatusIndex RadioIndex,
mlRadioStatusFailoverStatus INTEGER,
mlRadioStatusFailoverStats Integer32,
mlRadioStatusCRCErrors Integer32,
mlRadioStatusDrops Integer32,
mlRadioStatusRetries Integer32
}
mlRadioStatusIndex OBJECT-TYPE
SYNTAX RadioIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater or equal to zero, for each radio, starting from zero."
::= { mlRadioStatusEntry 1 }
mlRadioStatusFailoverStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication whether or not 60 GHz radio is failovered to 5 GHz radio."
::= { mlRadioStatusEntry 2 }
mlRadioStatusFailoverStats OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of radio failovers."
::= { mlRadioStatusEntry 3 }
mlRadioStatusCRCErrors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of CRC errors."
::= { mlRadioStatusEntry 4 }
mlRadioStatusDrops OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of radio packet drops."
::= { mlRadioStatusEntry 5 }
mlRadioStatusRetries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of radio retries."
::= { mlRadioStatusEntry 6 }
-- ===========================================================
-- Textual Conventions
-- ===========================================================
RadioIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each radio, starting from one."
SYNTAX Integer32 (1..2147483647)
EthernetIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each ethernet port, starting from one."
SYNTAX Integer32 (1..2147483647)
EthernetIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater or equal to zero, for each radio, starting from zero."
SYNTAX Integer32 (0..2147483647)
FrequencyGHz ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-3"
STATUS current
DESCRIPTION
"Frequency, raw value expressed in MHz, displayed in GHz"
SYNTAX Integer32 (0..100000000)
RadioMcsRate ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value of the radio Modulation and Coding Scheme"
SYNTAX INTEGER {
auto(0),
mcs-6m(4),
mcs-9M(5),
mcs-12M(6),
mcs-18M(7),
mcs-24M(8),
mcs-36M(9),
mcs-48M(10),
mcs-54M(11),
mcs0(12),
mcs1(13),
mcs2(14),
mcs3(15),
mcs4(16),
mcs5(17),
mcs6(18),
mcs7(19),
mcs8(20),
mcs9(21),
mcs10(22),
mcs11(23),
mcs12(24),
mcs13(25),
mcs14(26),
mcs15(27),
nss1-mcs0(30),
nss1-mcs1(31),
nss1-mcs2(32),
nss1-mcs3(33),
nss1-mcs4(34),
nss1-mcs5(35),
nss1-mcs6(36),
nss1-mcs7(37),
nss1-mcs8(38),
nss1-mcs9(39),
nss2-mcs1(40),
nss2-mcs2(41),
nss2-mcs3(42),
nss2-mcs4(43),
nss2-mcs5(44),
nss2-mcs6(45),
nss2-mcs7(46),
nss2-mcs8(47),
nss2-mcs9(49)
}
END
|