-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-6200-MIB.mib
1836 lines (1656 loc) · 60.1 KB
/
CISCO-6200-MIB.mib
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
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ****************************************************
-- CISCO-C6200-MIB.my: c6200 Platform Specific MIB
--
-- February 1998, the dms team
--
-- Copyright (c) 1998 by Cisco Systems, Inc.
-- All rights reserved.
--
-- ****************************************************
-- Glossary of terms
--
-- CAP: Carrierless Amplitude Phase Modulation
-- DMT: Discrete Multitone Modulation
-- DSLAM: Digital Subscriber Line ATM Multiplexor
-- RADSL: Rate Adaptive Digital Subscriber Loop
--
CISCO-6200-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter32, Gauge32, Integer32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DisplayString,
DateAndTime FROM SNMPv2-TC
ciscoExperiment FROM CISCO-SMI;
cisco6200MIB MODULE-IDENTITY
LAST-UPDATED "9807280000Z"
ORGANIZATION "Cisco System, Inc."
CONTACT-INFO
"Cisco Systems Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This MIB provides CISCO 6200 product information It is
structured as following groups: system - not part of indices,
defines system, slot and port level scalars."
REVISION "9802260000Z"
DESCRIPTION
"The initial release of this MIB only supported CAP line cards."
::= { ciscoExperiment 26 }
--
-- OBJECT IDENTIFIER assignment for various groups
--
cisco6200MibObjects OBJECT IDENTIFIER ::= { cisco6200MIB 1 }
c62System OBJECT IDENTIFIER ::= { cisco6200MibObjects 1 }
c62Slot OBJECT IDENTIFIER ::= { cisco6200MibObjects 2 }
c62OCInterface OBJECT IDENTIFIER ::= { cisco6200MibObjects 3 }
c62LineInterface OBJECT IDENTIFIER ::= { cisco6200MibObjects 4 }
c62Subscriber OBJECT IDENTIFIER ::= { cisco6200MibObjects 5 }
--
-- Textual conventions
--
C6200CardType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents card types contained in the C6200 product lines.
oc3si - one port, single mode, intermediate reach OC3
- based interface card
ctl - controller card
cap8 - eight port CAP RADSL interface card
cap16 - sixteen port CAP RADSL interface card
oc3ss - one port, single mode, short reach OC3 based
- interface card
oc3mm - one port, multi mode OC3 based interface card
stm1si - one port, single mode, intermediate reach STM1
based interface card
stm1mm - one port, multi mode STM1 based interface card
dmt8 - eight port DMT RADSL interface card
none - marks slot as vacant"
SYNTAX INTEGER {
oc3si (1),
ctl (2),
cap8 (3),
cap16 (4),
oc3ss (5),
oc3mm (6),
stm1si (7),
stm1mm (8),
dmt8 (9),
none (-1)
}
CommandValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This parameter controls execution of a command. The intended
command can be triggered by setting its value to execute. Its
value goes back to ready when intended command execution is
complete."
SYNTAX INTEGER {
ready (1),
execute (2)
}
AlarmLevel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents error status."
SYNTAX INTEGER {
none (1),
minor (2),
major (3),
critical (4),
unknown (5)
}
InterfaceStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents interface status."
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
TestStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents status of the test per subscriber line. Please refer
to lineTestTable for details on how to start a test. Once test
completes or aborted, status stays as pass, fail, or aborted
respectively until user clears it by setting it to inactive or
starts new test and that operation changes this to active."
SYNTAX INTEGER {
inactive (1), -- subscriber line is available for testing
active (2), -- test is in progress on desired subscriber
-- line
pass (3), -- bit error rate is less than bit error limit
fail (4), -- bit error rate is more than bit error limit
aborted (5), -- user aborted the test
waiting (6) -- waiting for the CPE to deliver the results of the
-- test
}
TestType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents Types of tests support per line."
SYNTAX INTEGER {
none (0), -- No Test has been selected for this line
lineQuality (1), -- CAP line quality test
capHardware (2), -- CAP hardware test on the line card
dmtLocalTest (3) -- DMT Local Test
}
--
-- C6200 System parameters
--
--
-- System configuration allows user to change card type information.
-- It is useful to create static system configuration which acts as
-- inventory. This information is used by the system to monitor and
-- and report any runtime configuration mismatch.
--
systemType OBJECT-TYPE
SYNTAX INTEGER {
c62OC3 (1) -- system with OC3 based network interface
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This type provides specific details about C6200 system type and
what kind of network interface it uses."
::= { c62System 1 }
systemAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This reflects the alarm level of the C6200 system. It is the
aggregation of the slot/port level alarms. Alarm levels
supported at the system level are none, minor, major and
critical. Unknown has no meaning."
::= { c62System 2 }
systemAlarmLevelChngCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter indicating a change in the system alarm level due to
change either at the slot or port alarm level. This will be
incremented by the system whenever any new alarm is raised or
cleared at slot or port level. This is needed as rising or
clearing of an alarm at port or slot level may not cause
systemAlarmLevel to change. This counter, in such case helps
manager application to recognize that alarm levels below system
level has changed without causing change in the
systemAlarmLevel. e.g. Say: System has two subscriber lines
experiencing a minor alarm condition. systemAlarmLevel will be
a minor alarm in such case. Now if one of the port level minor
alarms clear, a port alarm level would become OK but the system
and slot alarm levels may stay as a minor alarm."
::= { c62System 3 }
systemReset OBJECT-TYPE
SYNTAX CommandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter allows user to reboot the system with system
configuration from NVRAM (non-volatile memory). It can be used
for following purposes:
(1) Undo changes made to the system and not yet saved in the
NVRAM.
(2) Force the system to reboot from NVRAM configuration.
This command disrupts service to all the subscribers associated
with the system, so it should be use sparingly."
::= { c62System 4 }
systemSaveCnfg OBJECT-TYPE
SYNTAX CommandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter allows user/operator to make system changes
permanent. It causes system to write the system configuration on
a non-volatile memory (NVRAM). There is no need to restart the
system to make these changes effective."
::= { c62System 5 }
systemProvChngCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter indicating a card or subscriber provisioning change.
This will be incremented by the system whenever any change is
made. This is used to avoid unneccessary polling."
::= { c62System 6 }
--
-- Environment Alarm Parameters
--
--
-- Slot table defines the individual cards that make up the
-- CISCO 6200 system.
--
systemHClockAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This reflects the alarm level of the H-bus backplane clock.
H-bus clock error results in critical alarm at the at system
level (systemAlarmLevel = critical)."
::= { c62System 7 }
systemFanAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This reflects the alarm level of the fans. Error for this
parameter indicates failure of one or more fans. This error
results in minor alarm at the system level (systemAlarmLevel =
minor)."
::= { c62System 8 }
systemTemperatureAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This reflects the alarm level of the system temperature. When
temperature exceeds system preconfigured system allowable limit
this parameter indicates an error. This error results in minor
alarm at the system level (systemAlarmLevel = minor)."
::= { c62System 9 }
systemACO OBJECT-TYPE
SYNTAX CommandValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter deactivates the audible alarm at the system.
Audible alarm is generated by the system to announce detection
of new alarm(s). Once deactivated, system may activate it again
if it detects new additional alarm(s)."
::= { c62System 10 }
slotTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contains slot level information such as status, status
change time, card type and software version. It is indexed using
slot identifier. Empty entries are indicated using status empty
and card type none.
Operator can provision a new card in the system by setting
slotCnfType parameter in this table.
Changes to the slot configuration are temporary until user
actually requests save operation through systemSaveCnfg. Only
at that point system writes information in the NVRAM storage and
information becomes permanent."
::= { c62Slot 1 }
slotEntry OBJECT-TYPE
SYNTAX SlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry in the slot table"
INDEX { slotID }
::= { slotTable 1 }
SlotEntry ::=
SEQUENCE {
slotID INTEGER,
slotType C6200CardType,
slotStatus INTEGER,
slotSwVersion Integer32,
slotAlarmLevelChngCounter Counter32,
slotCnfType C6200CardType,
slotSubscriberChngCounter Counter32,
slotAlarmLevel AlarmLevel
}
slotID OBJECT-TYPE
SYNTAX INTEGER (1..14)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Slot Identifier for the selected slot."
::= { slotEntry 1 }
slotType OBJECT-TYPE
SYNTAX C6200CardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current type of card in the physical cage, as reported by
the system."
::= { slotEntry 2 }
slotStatus OBJECT-TYPE
SYNTAX INTEGER {
empty (1), -- Slot is empty.
notProvisioned (2), -- A card has been detected in the slot,
-- but has not been provisioned.
missing (3), -- Slot has been provisioned, but there is
-- no card in the slot.
mismatch (4), -- Slot has been provisioned, but the card
-- in the slot is not the correct type.
match (5) -- Slot has been provisioned and the card
-- in the slot is the correct type.
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the slot."
::= { slotEntry 3 }
slotSwVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The currently active firmware version number as a positive
whole number, e.g. 100."
::= {slotEntry 4 }
slotAlarmLevelChngCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter indicating change in the port alarm level. This is
needed as rising or clearing of an port level alarm may not
cause slotAlarmLevel to change. This counter, in such case helps
a manager application to recognize that the alarm levels below
slot level have changed without change in the slotAlarmLevel
(e.g. Say: a line card has two subscriber lines experiencing
Minor alarm condition. The slot alarm level will be minor alarm
in such case. Now if one of the port level minor alarms clear,
the port alarm level would become OK but slot alarm level will
stay as a minor alarm. Alarm level change includes rising or
clearing of a new alarm at slot/port level)."
::= {slotEntry 5 }
slotCnfType OBJECT-TYPE
SYNTAX C6200CardType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Card type, as provisioned by the operator used to compare
against card type reported by the system for monitoring
purposes. If slotType and slotCnfType do not match and
slotCnfType is not set to none, slotStatus is set to mismatch.
This condition only clears when operator corrects the
configuration to make them match.
The valid card type for each slot is as follows:
slot 1: oc3si, oc3mm, stm1si and stm1mm
slot 2: ctl
slot 3 & 4: none
slot 5 - 14: cap8 and dmt8"
::= { slotEntry 6 }
slotSubscriberChngCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter indicating change in the subscriber table. This will
be incremented by the slot whenever any change is made at the
port level. This is used to avoid unneccessary polling at the
subscriber table level."
::= { slotEntry 7 }
slotAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This reflects the alarm level of the slot. It is the
aggregation of the port level alarms. Alarm levels supported at
the slot level are none, minor, major, critical and unknown."
::= { slotEntry 8 }
--
-- Lets define portID which will be used to access OC3 port as well
-- as subscriber line information
--
portID OBJECT-TYPE
SYNTAX Integer32(0..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port Identifier on the targeted slot. PortID value depends on
the slot type."
::= { c62Slot 2 }
--
-- Optical Interface Fault Parameters
--
oCInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF OCInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains SONET alarm information. It is indexed
using slot and port identifier. Each object represents the alarm
level of individual SONET alarm condition."
::= { c62OCInterface 1 }
oCInterfaceEntry OBJECT-TYPE
SYNTAX OCInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a SONET alarm condition. Following are
the definition of SONET level alarms:
EQF - Equipment Failure (Local) (causes slotStatus to be
critical)
Near End Alarms (causes slotStatus to be critical):
LOS - Loss of Signal
LOF - Loss of Frame
LAIS - Line Alarm Indication Signal
LOP - Loss of Pointer
PAIS - Path Alarm Indication Signal
SLM - Signal Label Mismatch
Far End Alarms: (causes slotStatus to be critical)
LRFI - Line Remote Failure Indication
PRFI - Path Remote Failure Indication
Miscellaneous. Alarms:
LOST - Loss Of Synchronization (causes slotStatus to be major)
LOCD - Loss 0f Cell Delineation. (causes slotStatus to be
critical)
Individual alarm description describes any interdependencies
between alarm types. It also contains port status and interface
mode."
INDEX { slotID, portID }
::= { oCInterfaceTable 1 }
OCInterfaceEntry ::=
SEQUENCE {
oCIAlarmLevel AlarmLevel,
oCIEQF AlarmLevel,
oCILOS AlarmLevel,
oCILOF AlarmLevel,
oCILAIS AlarmLevel,
oCILOP AlarmLevel,
oCIPAIS AlarmLevel,
oCISLM AlarmLevel,
oCILRFI AlarmLevel,
oCIPRFI AlarmLevel,
oCILOST AlarmLevel,
oCILOCD AlarmLevel,
oCILoopMode INTEGER
}
oCIAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current alarm level on the optical interface, may be none,
major, critical or unknown. When the port is experiencing
equipment failure or any of the near end alarm condition, the
alarm level is marked critical. When the port is experiencing a
far end alarm condition, the alarm level is marked major. When
the port is in loopback mode, the alarm level is marked as
unknown."
::= { oCInterfaceEntry 2 }
oCIEQF OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local equipment failure indication. Possible values are none or
critical. When this attribute is critical, all other alarm
conditions are unknown."
::= { oCInterfaceEntry 3 }
--
-- Near End Alarms
--
oCILOS OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of signal indication. Possible values are none or
critical. When this attribute is critical, oCILOF, oCILOP, oCILAIS,
oCIPAIS, oCISLM, oCILRFI, oCIPRFI and oCILOCD are unknown."
::= { oCInterfaceEntry 4 }
oCILOF OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of frame indication. Possible values are none, critical or
unknown. When this attribute is critical, oCILAIS, oCILOP,
oCIPAIS, oCISLM, oCILRFI, oCIPRFI and oCILOCD are unknown."
::= { oCInterfaceEntry 5 }
oCILAIS OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line alarm indication signal. Possible values are none,
critical or unknown. When this attribute is critical, oCILOP and
oCISLM are unknown."
::= { oCInterfaceEntry 6 }
oCILOP OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of pointer indication. Possible values are none, critical
or unknown. When this attribute is critical, oCIPAIS, oCISLM and
oCILOCD are unknown."
::= { oCInterfaceEntry 7 }
oCIPAIS OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path alarm indication signal. Possible values are none,
critical or unknown. When this attribute is critical, oCISLM is
unknown."
::= { oCInterfaceEntry 8 }
oCISLM OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal label mismatch indication. Possible values are none,
critical or unknown."
::= { oCInterfaceEntry 9 }
--
-- Far End Alarms
--
oCILRFI OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line remote failure indication. Possible values are none,
critical or unknown."
::= { oCInterfaceEntry 10 }
oCIPRFI OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path remote failure indication. Possible values are none,
critical or unknown."
::= { oCInterfaceEntry 11 }
--
-- Miscellaneous Alarms
--
oCILOST OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of synchronization indication. Possible values are none,
major or unknown."
::= { oCInterfaceEntry 12 }
oCILOCD OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loss of cell delineation. Possible values are none, critical or
unknown."
::= { oCInterfaceEntry 13 }
oCILoopMode OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter puts the optical interface of C6200 system in
facility (far end) loopback mode. It causes the node to loop all
the traffic received on the optical interface back to the
network. It does not generate any traffic or perform any kind of
testing locally. This mode affects services to all the users
connected through the node, so this facility must be used with
care. User must set it back to disable mode once the testing
completes. System will stay in loopback mode, if enabled, until
the user disables the loop mode through NMS Manager or the
system terminates - in which case loop mode is disabled
automatically.
It is only meaningful when the out of band management channel is
used for management. It may not be useful when the in-band
management channel is used for management traffic, as it causes
breakdown in the management communications channel.
The alarm level of the port is set to unknown while loopback
mode is enabled."
::= { oCInterfaceEntry 14 }
--
-- Optical Interface Performance Parameters
--
oCPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF OCPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains SONET Performance parameters."
::= { c62OCInterface 2 }
oCPerfEntry OBJECT-TYPE
SYNTAX OCPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a SONET performance parameters for the
targeted port."
INDEX { slotID, portID }
::= { oCPerfTable 1 }
OCPerfEntry ::=
SEQUENCE {
oCPTxCellCount Counter32,
oCPRxCellCount Counter32,
oCPHecErrCount Counter32
}
oCPTxCellCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of number of non-idle ATM cells inserted into the
transmit SONET payload since system start time. This is free
running counter and rolls back to zero when the value exceeds
2^32."
::= { oCPerfEntry 1 }
oCPRxCellCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of number of ATM cells received at SONET interface since
system start time. Idle cells and cells with uncorrectable
header errors are not included in the count. This is a free
running counter which rolls back to zero when the value exceeds
2^32."
::= { oCPerfEntry 2 }
oCPHecErrCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of uncorrectable header errors since system start time.
This is a free running counter which rolls back to zero when the
value exceeds 2^32."
::= { oCPerfEntry 3 }
--
-- Line Interface Parameters
--
lineInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF LineInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The line table describes basic identification and runtime fault
information on the individual subscriber line. A subscriber line
consists of a port on the line card, Customer Premises
Equipment (CPE) and a physical line connecting both. Fault
monitoring is supported for both ends of the line. Subscriber
line information consists of upstream (local port) information
as well as downstream (Remote CPE) information.
Downstream (ATU-C->ATU-R) information is reported by the
individual port of the line card locally.
Upstream (ATU-R->ATU-C) information is remote end (CPE)
information which can be obtained via heartbeat messages generated
by the CPE, other proprietary or standards based mechanisms. This
information is proxied by the line card on the C6200 system.
Entries in the table with non-assigned port have their mode
disabled, so no service is available unless the port is
configured and assigned to a subscriber."
::= { c62LineInterface 1 }
lineInterfaceEntry OBJECT-TYPE
SYNTAX LineInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry describes the fields being supported by the line
table."
INDEX { slotID, portID }
::= { lineInterfaceTable 1 }
LineInterfaceEntry ::=
SEQUENCE {
lineAlarmLevel AlarmLevel,
lineDwnSNRMargin Integer32,
lineDwnLOCD AlarmLevel,
lineDwnErrSecs Counter32,
lineDwnLineRate Gauge32,
lineUpSNRMargin Integer32,
lineUpLOCD AlarmLevel,
lineUpErrSecs Counter32,
lineUpLineRate Gauge32,
lineRateAlarm INTEGER,
lineMode INTEGER,
lineDMTDwnAttenuation Gauge32,
lineDMTUpAttenuation Gauge32,
lineDMTDwnLPR AlarmLevel,
lineDMTUpLOS AlarmLevel,
lineDMTUpLOF AlarmLevel,
lineDMTLoopback INTEGER
}
lineAlarmLevel OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current alarm level of the port. Refer to
TEXTUAL-CONVENTION section for details on AlarmLevel. Only
following values for the AlarmLevel are possible for this
attribute:
none - Everything is fine
minor - Local end or remote end is experiencing problems,
e.g.
(1) loss of Cell Delineation is observed on the
downstream direction.
(2) subscriberDwnLineRate and lineDwnLineRate do not
match.
(3) subscriberUpLineRate and lineUpLineRate do not
match.
(4) Both Up/down line rates do not match with the
subscriber requested rates.
(5) loss of signal is observed in the downstream
direction for DMT cards and the object
subscriberDMTLOSConfig is configured to alarm
this condition.
(6) loss of frame is observed in the downstream
direction for DMT cards.
unknown - Remote end is non-reachable. This could be
either due to power down at the CPE or due to break in
the connection between C6200 system and the CPE. This is
exhibited by the lineDMTUpLOS alarm."
::= { lineInterfaceEntry 1 }
--
-- ATU-C (Downstream) information
--
lineDwnSNRMargin OBJECT-TYPE
SYNTAX Integer32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In db, the difference between the current downstream signal
to noise ratio and the SNR required for the selected line
rate. as seen by the cpe. This object must be divided by 10
to obtain the real value for CAP only. Following are the
possible values:
Negative number - bad SNR margin for the desired line rate.
0 - adequate SNR (no margin) for the desired line
rate.
Positive number - Good SNR margin for the desired line rate.
Higher number means better SNR margin and
better line quality."
::= { lineInterfaceEntry 2 }
lineDwnLOCD OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Downstream loss of cell delineation. It indicates that the cpe
received cells on the line do not contain a valid header error
check (HEC).
This object is no longer supported."
::= { lineInterfaceEntry 3 }
lineDwnErrSecs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Downstream count of errored seconds received by the cpe. An error
second is a second with line quality problems due to a HEC error
in CAP cards or CRC, LOS or SEF events in DMT cards."
::= { lineInterfaceEntry 4 }
lineDwnLineRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current downstream line rate in kbps. It is adapted by the line
card using rate adaptation logic."
::= { lineInterfaceEntry 5 }
--
-- ATU-R (Upstream) information
--
lineUpSNRMargin OBJECT-TYPE
SYNTAX Integer32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In db, the difference between the current upstream signal to
noise ratio and the SNR required for the selected line rate as
seen by the co. This object must be divided by 10 to obtain
the real value for CAP only. Following are the possible values:
Negative number - bad SNR margin for the desired line rate.
0 - adequate SNR (no margin) for the desired line
rate.
Positive number - Good SNR margin for the desired line rate.
Higher number means better SNR margin and
better line quality."
::= { lineInterfaceEntry 6 }
lineUpLOCD OBJECT-TYPE
SYNTAX AlarmLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upstream loss of cell delineation. It indicates that the co
received cells on the line do not contain a valid header
error check (HEC). This alarm will be marked unknown if
lineDMTDwnLPR, lineDMTUpLOS or lineDMTUpLOF on a DMT card are
minor."
::= { lineInterfaceEntry 7 }
lineUpErrSecs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Upstream count of errored seconds recieved by the co. An error
second is a second with line quality problems due to a HEC error.
or CRC, LOS or SEF events in DMT cards."
::= { lineInterfaceEntry 8 }
lineUpLineRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current upstream line rate in kbps. This is adapted by the line
card using rate adaptation logic."
::= { lineInterfaceEntry 9 }
lineRateAlarm OBJECT-TYPE
SYNTAX INTEGER {
ok (1),
down (2),
up (3),
downAndUp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This parameter is the comparison between actual
(lineDwnLineRate/ lineUpLineRate) and the user requested line
rates (subscriberDwnLineRate/subscriberUpLineRate). User
requested rates are part of the subscriber section of the MIB.
Following is the list of possible values:
1 - both the line rates match user requested rates.
2 - Downstream line rate does not match user requested rate.
3 - Upstream line rate does not match user requested rate.
4 - Both rates do not match user requested rates."
::= { lineInterfaceEntry 10 }
lineMode OBJECT-TYPE
SYNTAX INTEGER {
testing (1), -- line is under test.
training (2), -- line is trying to acquire user requested
-- rate or in rate adaptation mode.
active (3), -- line is active and in data transfer mode.
down (4) -- subscriber line is administratively disabled.
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This parameter shows current mode of the line. The possible
modes are as shown above. Normally line stays in active mode, if
everything is fine. If the line test fails, it goes into
training mode and tries to acquire next possible lower rate. The
line can also go into the training mode when the line card is
unable to communicate to the remote end. It does not come out of
the training mode until it is able to acquire a user requested
rate or a lower rate, if that is unattainable. This mode is
changed by the system to down, when the subscriber line is
administratively disabled."
::= { lineInterfaceEntry 11 }
lineDMTDwnAttenuation OBJECT-TYPE
SYNTAX Gauge32
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Measures downstream attenuation of the line reported by the CPE
for the DMT card only. The units for this value are in decibels
(dB). This object is instantiated for the CAP card."
::= { lineInterfaceEntry 12 }
lineDMTUpAttenuation OBJECT-TYPE
SYNTAX Gauge32