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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
|
-- ============================================================================
-- AT-PLUGGABLE-DIAGNOSTICS-MIB, Allied Telesis enterprise MIB:
-- Diagnostic objects related to Optical Pluggable modules.
--
-- Copyright (c) 2015 by Allied Telesis, Inc.
-- All rights reserved.
--
-- ============================================================================
AT-PLUGGABLE-DIAGNOSTICS-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayStringUnsized
FROM AT-SMI-MIB
sysinfo
FROM AT-SYSINFO-MIB
Integer32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
InterfaceIndex
FROM IF-MIB;
atPluggableDiag MODULE-IDENTITY
LAST-UPDATED "201507170000Z"
ORGANIZATION "Allied Telesis, Inc"
CONTACT-INFO "http://www.alliedtelesis.com"
DESCRIPTION
"The AT Pluggbale Diagnostics MIB contains objects to retrieve the standard
diagnostic information from installed SFP modules."
REVISION "201507170000Z"
DESCRIPTION "Initial revision"
::= { sysinfo 28 }
----------------------------------------------------------------
-- The Digital Diagnostic monitoring for optical pluggables
----------------------------------------------------------------
atPluggableDiagTable OBJECT IDENTIFIER ::= { atPluggableDiag 1 }
----------------------------------------------------------------
-- Temperature table for Digital Diagnostic monitoring
----------------------------------------------------------------
atPluggableDiagTempTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagTempEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the various temperature parameters observed
as a part of Digital diagnostics monitoring, for all the optical pluggables
installed in the devices."
::= { atPluggableDiagTable 1 }
atPluggableDiagTempEntry OBJECT-TYPE
SYNTAX AtPluggableDiagTempEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various temperature parameters of pluggables
such as current status reading, current alarm status, higher and lower
alarm threshold, current warning, higher and lower warning threshold."
INDEX { atPluggableDiagTempIfIndex, atPluggableDiagTempChannel }
::= { atPluggableDiagTempTable 1 }
AtPluggableDiagTempEntry ::= SEQUENCE {
atPluggableDiagTempIfIndex InterfaceIndex,
atPluggableDiagTempChannel Integer32,
atPluggableDiagTempStatusReading Integer32,
atPluggableDiagTempCurrentAlarm OCTET STRING,
atPluggableDiagTempAlarmMax Integer32,
atPluggableDiagTempAlarmMin Integer32,
atPluggableDiagTempCurrentWarning OCTET STRING,
atPluggableDiagTempWarningMax Integer32,
atPluggableDiagTempWarningMin Integer32 }
atPluggableDiagTempIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagTempEntry 1 }
atPluggableDiagTempChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagTempEntry 2 }
atPluggableDiagTempStatusReading OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degree C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current temperature status reading."
::= { atPluggableDiagTempEntry 3 }
atPluggableDiagTempCurrentAlarm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current temperature alarm reading."
::= { atPluggableDiagTempEntry 4 }
atPluggableDiagTempAlarmMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degree C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum temperature alarm threshold value."
::= { atPluggableDiagTempEntry 5 }
atPluggableDiagTempAlarmMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degree C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum temperature alarm threshold value."
::= { atPluggableDiagTempEntry 6 }
atPluggableDiagTempCurrentWarning OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current temperature warnings."
::= { atPluggableDiagTempEntry 7 }
atPluggableDiagTempWarningMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degree C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum temperature warning threshold value."
::= { atPluggableDiagTempEntry 8 }
atPluggableDiagTempWarningMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 degree C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum temperature warning threshold value."
::= { atPluggableDiagTempEntry 9 }
----------------------------------------------------------------
-- Voltage (Vcc) table for Digital Diagnostic monitoring
----------------------------------------------------------------
atPluggableDiagVccTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the various Voltage (Vcc) parameters observed
as a part of Digital diagnostics monitoring, for all the optical pluggables
installed in the devices."
::= { atPluggableDiagTable 2 }
atPluggableDiagVccEntry OBJECT-TYPE
SYNTAX AtPluggableDiagVccEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various Voltage (Vcc) parameters of pluggables
such as current status reading, current alarm status, higher and lower
alarm threshold, current warning, higher and lower warning threshold."
INDEX { atPluggableDiagVccIfIndex, atPluggableDiagVccChannel }
::= { atPluggableDiagVccTable 1 }
AtPluggableDiagVccEntry ::= SEQUENCE {
atPluggableDiagVccIfIndex InterfaceIndex,
atPluggableDiagVccChannel Integer32,
atPluggableDiagVccStatusReading Integer32,
atPluggableDiagVccCurrentAlarm OCTET STRING,
atPluggableDiagVccAlarmMax Integer32,
atPluggableDiagVccAlarmMin Integer32,
atPluggableDiagVccCurrentWarning OCTET STRING,
atPluggableDiagVccWarningMax Integer32,
atPluggableDiagVccWarningMin Integer32 }
atPluggableDiagVccIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagVccEntry 1 }
atPluggableDiagVccChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagVccEntry 2 }
atPluggableDiagVccStatusReading OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Voltage (Vcc) status reading."
::= { atPluggableDiagVccEntry 3 }
atPluggableDiagVccCurrentAlarm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Voltage (Vcc) alarm reading."
::= { atPluggableDiagVccEntry 4 }
atPluggableDiagVccAlarmMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Voltage (Vcc) alarm threshold value."
::= { atPluggableDiagVccEntry 5 }
atPluggableDiagVccAlarmMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Voltage (Vcc) alarm threshold value."
::= { atPluggableDiagVccEntry 6 }
atPluggableDiagVccCurrentWarning OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Voltage (Vcc) warnings."
::= { atPluggableDiagVccEntry 7 }
atPluggableDiagVccWarningMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Voltage (Vcc) warning threshold value."
::= { atPluggableDiagVccEntry 8 }
atPluggableDiagVccWarningMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Voltage (Vcc) warning threshold value."
::= { atPluggableDiagVccEntry 9 }
----------------------------------------------------------------
-- Tx Bias Current (mA) table for Digital Diagnostic monitoring
----------------------------------------------------------------
atPluggableDiagTxBiasTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagTxBiasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the various Tx Bias Current (mA)
parameters observed as a part of Digital diagnostics monitoring,
for all the optical pluggables installed in the devices."
::= { atPluggableDiagTable 3 }
atPluggableDiagTxBiasEntry OBJECT-TYPE
SYNTAX AtPluggableDiagTxBiasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various Tx Bias Current (mA)
parameters of pluggables such as current status reading,
current alarm status, higher and lower alarm threshold,
current warning, higher and lower warning threshold."
INDEX { atPluggableDiagTxBiasIfIndex, atPluggableDiagTxBiasChannel }
::= { atPluggableDiagTxBiasTable 1 }
AtPluggableDiagTxBiasEntry ::= SEQUENCE {
atPluggableDiagTxBiasIfIndex InterfaceIndex,
atPluggableDiagTxBiasChannel Integer32,
atPluggableDiagTxBiasStatusReading Integer32,
atPluggableDiagTxBiasCurrentAlarm OCTET STRING,
atPluggableDiagTxBiasAlarmMax Integer32,
atPluggableDiagTxBiasAlarmMin Integer32,
atPluggableDiagTxBiasCurrentWarning OCTET STRING,
atPluggableDiagTxBiasWarningMax Integer32,
atPluggableDiagTxBiasWarningMin Integer32 }
atPluggableDiagTxBiasIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagTxBiasEntry 1 }
atPluggableDiagTxBiasChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagTxBiasEntry 2 }
atPluggableDiagTxBiasStatusReading OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Bias (mA) status reading."
::= { atPluggableDiagTxBiasEntry 3 }
atPluggableDiagTxBiasCurrentAlarm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Bias (mA) alarm reading."
::= { atPluggableDiagTxBiasEntry 4 }
atPluggableDiagTxBiasAlarmMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Tx Bias (mA) alarm threshold value."
::= { atPluggableDiagTxBiasEntry 5 }
atPluggableDiagTxBiasAlarmMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Tx Bias (mA) alarm threshold value."
::= { atPluggableDiagTxBiasEntry 6 }
atPluggableDiagTxBiasCurrentWarning OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Bias (mA) warnings."
::= { atPluggableDiagTxBiasEntry 7 }
atPluggableDiagTxBiasWarningMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Tx Bias (mA) warning threshold value."
::= { atPluggableDiagTxBiasEntry 8 }
atPluggableDiagTxBiasWarningMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001 mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Tx Bias (mA) warning threshold value."
::= { atPluggableDiagTxBiasEntry 9 }
----------------------------------------------------------------
-- Tx Power (mW) table for Digital Diagnostic monitoring
----------------------------------------------------------------
atPluggableDiagTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the various Tx Power (mW)
parameters observed as a part of Digital diagnostics monitoring,
for all the optical pluggables installed in the devices."
::= { atPluggableDiagTable 4 }
atPluggableDiagTxPowerEntry OBJECT-TYPE
SYNTAX AtPluggableDiagTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various Tx Power (mW)
parameters of pluggables such as current status reading,
current alarm status, higher and lower alarm threshold,
current warning, higher and lower warning threshold."
INDEX { atPluggableDiagTxPowerIfIndex, atPluggableDiagTxPowerChannel }
::= { atPluggableDiagTxPowerTable 1 }
AtPluggableDiagTxPowerEntry ::= SEQUENCE {
atPluggableDiagTxPowerIfIndex InterfaceIndex,
atPluggableDiagTxPowerChannel Integer32,
atPluggableDiagTxPowerStatusReading Integer32,
atPluggableDiagTxPowerCurrentAlarm OCTET STRING,
atPluggableDiagTxPowerAlarmMax Integer32,
atPluggableDiagTxPowerAlarmMin Integer32,
atPluggableDiagTxPowerCurrentWarning OCTET STRING,
atPluggableDiagTxPowerWarningMax Integer32,
atPluggableDiagTxPowerWarningMin Integer32 }
atPluggableDiagTxPowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagTxPowerEntry 1 }
atPluggableDiagTxPowerChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagTxPowerEntry 2 }
atPluggableDiagTxPowerStatusReading OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Power (mW) status reading."
::= { atPluggableDiagTxPowerEntry 3 }
atPluggableDiagTxPowerCurrentAlarm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Power (mW) alarm reading."
::= { atPluggableDiagTxPowerEntry 4 }
atPluggableDiagTxPowerAlarmMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Tx Power (mW) alarm threshold value."
::= { atPluggableDiagTxPowerEntry 5 }
atPluggableDiagTxPowerAlarmMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Tx Power (mW) alarm threshold value."
::= { atPluggableDiagTxPowerEntry 6 }
atPluggableDiagTxPowerCurrentWarning OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Tx Power (mW) warnings."
::= { atPluggableDiagTxPowerEntry 7 }
atPluggableDiagTxPowerWarningMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Tx Power (mW) warning threshold value."
::= { atPluggableDiagTxPowerEntry 8 }
atPluggableDiagTxPowerWarningMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Tx Power (mW) warning threshold value."
::= { atPluggableDiagTxPowerEntry 9 }
----------------------------------------------------------------
-- Rx Power (mW) table for Digital Diagnostic monitoring
----------------------------------------------------------------
atPluggableDiagRxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagRxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the various Rx Power (mW)
parameters observed as a part of Digital diagnostics monitoring,
for all the optical pluggables installed in the devices."
::= { atPluggableDiagTable 5 }
atPluggableDiagRxPowerEntry OBJECT-TYPE
SYNTAX AtPluggableDiagRxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various Rx Power (mW)
parameters of pluggables such as current status reading,
current alarm status, higher and lower alarm threshold,
current warning, higher and lower warning threshold."
INDEX { atPluggableDiagRxPowerIfIndex, atPluggableDiagRxPowerChannel }
::= { atPluggableDiagRxPowerTable 1 }
AtPluggableDiagRxPowerEntry ::= SEQUENCE {
atPluggableDiagRxPowerIfIndex InterfaceIndex,
atPluggableDiagRxPowerChannel Integer32,
atPluggableDiagRxPowerStatusReading Integer32,
atPluggableDiagRxPowerCurrentAlarm OCTET STRING,
atPluggableDiagRxPowerAlarmMax Integer32,
atPluggableDiagRxPowerAlarmMin Integer32,
atPluggableDiagRxPowerCurrentWarning OCTET STRING,
atPluggableDiagRxPowerWarningMax Integer32,
atPluggableDiagRxPowerWarningMin Integer32 }
atPluggableDiagRxPowerIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagRxPowerEntry 1 }
atPluggableDiagRxPowerChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagRxPowerEntry 2 }
atPluggableDiagRxPowerStatusReading OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Rx Power (mW) status reading."
::= { atPluggableDiagRxPowerEntry 3 }
atPluggableDiagRxPowerCurrentAlarm OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Rx Power (mW) alarm reading."
::= { atPluggableDiagRxPowerEntry 4 }
atPluggableDiagRxPowerAlarmMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Rx Power (mW) alarm threshold value."
::= { atPluggableDiagRxPowerEntry 5 }
atPluggableDiagRxPowerAlarmMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Rx Power (mW) alarm threshold value."
::= { atPluggableDiagRxPowerEntry 6 }
atPluggableDiagRxPowerCurrentWarning OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Rx Power (mW) warnings."
::= { atPluggableDiagRxPowerEntry 7 }
atPluggableDiagRxPowerWarningMax OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum Rx Power (mW) warning threshold value."
::= { atPluggableDiagRxPowerEntry 8 }
atPluggableDiagRxPowerWarningMin OBJECT-TYPE
SYNTAX Integer32
UNITS "0.0001 mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum Rx Power (mW) warning threshold value."
::= { atPluggableDiagRxPowerEntry 9 }
-----------------------------------------------------------------------
-- Rx Loss of Signal (LOS) table for Digital Diagnostic monitoring
-----------------------------------------------------------------------
atPluggableDiagRxLosTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtPluggableDiagRxLosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of information regarding the Rx Loss of Singal (Los)
parameters observed as a part of Digital diagnostics monitoring,
for all the optical pluggables installed in the devices."
::= { atPluggableDiagTable 6 }
atPluggableDiagRxLosEntry OBJECT-TYPE
SYNTAX AtPluggableDiagRxLosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information about various Rx Loss of Singal (Los) parameters
of pluggables such as current status reading."
INDEX { atPluggableDiagRxLosIfIndex, atPluggableDiagRxLosChannel }
::= { atPluggableDiagRxLosTable 1 }
AtPluggableDiagRxLosEntry ::= SEQUENCE {
atPluggableDiagRxLosIfIndex InterfaceIndex,
atPluggableDiagRxLosChannel Integer32,
atPluggableDiagRxLosStatusReading OCTET STRING }
atPluggableDiagRxLosIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the pluggable."
::= { atPluggableDiagRxLosEntry 1 }
atPluggableDiagRxLosChannel OBJECT-TYPE
SYNTAX Integer32(1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The channel number of the pluggable."
::= { atPluggableDiagRxLosEntry 2 }
atPluggableDiagRxLosStatusReading OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Rx Los status reading."
::= { atPluggableDiagRxLosEntry 3 }
END
|