-
Notifications
You must be signed in to change notification settings - Fork 29
/
BASIS-GENERIC-MIB.my
1529 lines (1360 loc) · 42.2 KB
/
BASIS-GENERIC-MIB.my
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
-- *****************************************************************
-- BASIS Generic MIB
--
-- September 2002
--
-- Copyright (c) 1996-2001, 2002 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
-- LAST-UPDATED "200209240000Z"
-- DESCRIPTION
-- "The Card Generic mib containing generic information about
-- the service modules(Function Modules),back cards(Line Modules).
-- This contains information such as card type, back card type,
-- card status, back card status,serial number,
-- hardware revision, firmware version,reset reasons etc."
--
-- REVISION "200209240000Z"
-- DESCRIPTION
-- "Clarified the descriptions of some of the objects.
-- Added transId OBJECT-TYPE.
--
-- REVISION "200110150000Z"
-- DESCRIPTION
-- "Added following enumeration in <functionModuleType>
-- vism-pr-8T1 (563)
-- vism-pr-8E1 (564)
-- "
-- REVISION "200110020000Z"
-- DESCRIPTION
-- "Modified description for configChangeTypeBitMap.
-- Added configChangeParentObjectIndex,
-- configChangeGrandParentObjectIndex and
-- configChangeSMSpecificObject in
-- cardInformation Table
-- "
--
-- REVISION "200109240000Z"
-- DESCRIPTION
-- "Added following enumeration in <functionModuleType>
-- cesmB-8T1 (787)
-- "
--
-- REVISION "200109210000Z"
-- DESCRIPTION
-- "Added following enumerations in <functionModuleState>
-- notResponding(14)
-- cardinit(17)
-- "
--
-- REVISION "200108230000Z"
-- DESCRIPTION
-- CONTACT-INFO
-- " Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]"
-- "
BASIS-GENERIC-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter FROM RFC1155-SMI
OBJECT-TYPE FROM RFC-1212
DisplayString FROM RFC1213-MIB
cardGeneric FROM BASIS-MIB;
cardInformation OBJECT IDENTIFIER ::= { cardGeneric 1 }
cardInterface OBJECT IDENTIFIER ::= { cardGeneric 2 }
cardSelfTest OBJECT IDENTIFIER ::= { cardGeneric 3 }
-- ------------------------------------------------------------------
--
-- Group "cardInformation"
-- This group contains information which is generic to all cards in BASIS.
-- ------------------------------------------------------------------
moduleSlotNumber OBJECT-TYPE
SYNTAX INTEGER (1..32)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Slot number this card is present
"
::= { cardInformation 1 }
-- function Module is also referred to as front card in some instances
--
functionModuleType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
asc (2),
bnm-T3 (10),
bnm-E3 (11),
bnm-155 (12),
srm-4T1E1 (20),
srm-3T3 (21),
-- SRME
srme-1OC3 (22),
srme-1STS3(23),
srme-NOBC(24),
srm-3T3-NOBC(25),
frsm-4T1 (30),
frsm-4E1 (31),
frsm-4T1-C(32),
frsm-4E1-C(33),
-- HSSI
frsm-hs1 (34),
frsm-8T1 (35),
frsm-8E1 (36),
frsm-hs1b (37),
ausm-4T1 (40),
ausm-4E1 (41),
ausm-8T1 (50),
ausm-8E1 (51),
-- AUSM Model B
ausmB-8T1 (52),
ausmB-8E1 (53),
cesm-4T1 (60),
cesm-4E1 (61),
imatm-T3T1 (70),
imatm-E3E1 (71),
-- imatm model B
imatmB-8T1 (72),
imatmB-8E1 (73),
frasm-8T1 (80),
cesm-8T1 (90),
cesm-8E1 (91),
-- SM from Netro
bscsm-2 (100),
bscsm-4 (101),
-- testers
atmt-8T1 (110),
atmt-8E1 (111),
frt-8T1 (120),
frt-8E1 (121),
-- frsm_vhs cards
frsm-2ct3 (130),
frsm-2t3 (131),
frsm-2e3 (132),
frsm-hs2 (133),
frsm-2t3b (134),
frsm-2e3b (135),
frsm-hs2b-hssi (136),
frsm-hs2b-12In1 (137),
-- cesm_t3e3 cards
cesm-T3 (140),
cesm-E3 (141),
-- VISM
vism-8T1 (150),
vism-8E1 (151),
-- VISM PR
vism-pr-8T1 (563),
vism-pr-8E1 (564),
cesmB-8T1 (787),
pxm1 (1000),
pxm1-2t3e3 (1001),
pxm1-4oc3 (1002),
pxm1-oc12 (1003),
rpm (2000),
rpm-pr (2001)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object holds the type of the card. The card
can type is for Processor module as well as service module.
"
DEFVAL { other }
::= { cardInformation 2 }
functionModuleDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Describes the card
"
::= { cardInformation 3 }
functionModuleSerialNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Serial number of the function Module."
::= { cardInformation 4 }
functionModuleHWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hardware revision number for function Module."
::= { cardInformation 5 }
functionModuleFWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Firmware revision number of the function Module."
::= { cardInformation 6 }
functionModuleState OBJECT-TYPE
SYNTAX INTEGER{
nocard (1),
standby (2),
active (3),
failed (4),
selfTest (5),
heldInReset (6),
boot (7),
mismatch (8),
unknown (9),
coreCardMisMatch (10),
blocked (11),
reserved (12),
hold (13),
notResponding (14),
cardinit (17)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object holds the status of a card in a particular shelf-slot.
The possible values are :
nocard(1) : card not present.
standby(2) : card in standby state. The card is in ready state
and will be ready to take over the service if
the corresponding active card(redundant)
fails.
active(3) : card in active state. The card is providing
the service.
failed(4) : card in failed state. The card can come out
of this state only after user intervention
(Reset or running some CLI commands).
selfTest(5) : online diagnostics is being run in card.
heldInReset(6) : The card configuration is being cleared.
No requests can be serviced.
boot(7) : card in boot state.
mismatch(8) : card is not compatible with the current
configuration. Card was correctly provisioned
earlier, however the card was replaced by
an incompatible card. This state can be
resolved by clearing the configuration, or
replacing with the appropriate card.
unknown(9) : could not determine the state
coreCardMisMatch(10) : Controller Card(PXM/ASC etc)
and SRM(Service Resource Module)
combination does not match.
blocked(11) : In case of 1:N redundancy configuration
the secondary card(backup card) is covering
one of the primary card and can not cover
any other card in the group if there is a failure.
Redundancy is blocked.
hold(13) : The standby controller card assumes the hold
state during PXM upgrades. In this state,
the standby PXM will be running a different
software but will be receiving all standby
updates(BRAM and Database). This state is
applicable only for MGX8250 Platform.
notResponding(14): Response from the Service Module has become
slow probably due to overloading of CPU.
No recovery action is required on user part.
At present, this state is applicable only
for Router Blade(RPM).
cardinit(17) : When the physical presence of card has been
detected but the communication hasn't yet
been established between the controller card
(PXM) and Service Module.
"
::= { cardInformation 7 }
functionModuleResetReason OBJECT-TYPE
SYNTAX INTEGER{
powerUp (1),
parityError (2),
watchDog (3),
resourceOverflow (4),
clrAllCnf (5),
missingTask (6),
pxmLowVoltage(7),
resetByEventLogTask(8),
resetFromShell(9),
unknown(10),
resetFromPXM(11),
resetSys(12),
switchCC(13),
sCacheError(14),
swError(15),
upgrade(16),
restoreAllCnf(17),
driverError(18)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Last reason for card to reset.
The possible values are :
powerUp(1) : power up
parityError(2) : parity error
watchDog(3) : watchdog
resourceOverflow (4) : resource overflow
clrAllCnf (5) : configuration of the shelf is cleared.
missingTask (6) : task is missing
pxmLowVoltage(7): low voltage detected on PXM
resetByEventLogTask(8):
resetFromShell(9): command is run from command shell
unknown(10) :
resetFromPXM(11) : Controller Card(PXM) reset the card.
resetSys(12) : due to resetsys CLI Command.
switchCC(13) : due to switch over CLI command.
sCacheError(14) :
swError(15) : software error.
upgrade(16) : upgrade
restoreAllCnf(17): restore configuration.
driverError(18) : driver error.
Valid values for VISM:
powerUp, watchDog, resetFromShell and resetFromPXM.
"
::= { cardInformation 8 }
lineModuleType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
lm-ASC (2),
lm-DB15-4T1 (16),
lm-DB15-4E1 (17),
lm-BNC-4E1 (18),
lm-DB15-4T1-R(19),
lm-DB15-4E1-R(20),
lm-BNC-4E1-R (21),
lm-RJ48-8T1 (22),
lm-RJ48-8E1 (23),
lm-SMB-8E1 (24),
lm-RJ48-T3T1 (25),
lm-RJ48-E3E1 (26),
lm-RJ48-T3E1 (27),
lm-SMB-E3E1 (28),
lm-RJ48-E3T1 (29),
lm-SMB-T3E1 (30),
lm-T3E3-D (32),
lm-T3E3-B (33),
lm-155-SMF (34),
lm-155-UTP (35),
lm-RJ48-8T1-R(48),
lm-RJ48-8E1-R(49),
lm-SMB-8E1-R (50),
lm-3T3-B (51),
-- HSSI/X.21
lm-HS1-4X21 (60),
lm-HS1-3HSSI (61),
-- HSSI/X.21
lm-HS1-4V35 (62),
lm-12In1-8s (63),
lm-BSCSM-2 (70),
lm-BSCSM-4 (71),
lm-BNC-2T3 (80),
lm-BNC-2E3 (81),
pxm-ui (500),
smfir-1-622 (501),
smflr-1-622 (502),
smfir15-1-622 (503),
smflr15-1-622 (504),
mmf-4-155 (505),
smfir-4-155 (506),
smflr-4-155 (507),
rj45-fe (511),
mmf-fe (512),
mmf-fddi (513),
smf-fddi (514),
rj45-4e (515),
pxm-ui-s3 (1006),
-- SRME back card
lm-srme-1OC3-smlr (1050),
lm-srme-1OC3-smir (1051),
lm-srme-1OC3-smb (1052)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains the Line Module(back card) type.
Physically it is behind the backplane, normally with
connectors for physical devices.
These are specific to the front or functional modules.
"
DEFVAL { other }
::= { cardInformation 9 }
lineModuleDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains description of the line module."
::= { cardInformation 10 }
lineModuleSerialNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains Serial number of the line module."
::= { cardInformation 11 }
lineModuleHWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains Hardware revision for line module."
::= { cardInformation 12 }
lineModuleFWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Firmware revision for line module.
The current version does not have any
firmware, hence will always contains
zero length octet string."
::= { cardInformation 13 }
lineModuleState OBJECT-TYPE
SYNTAX INTEGER {
notPresent (1),
present (2),
invalid (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"line module status."
::= { cardInformation 14 }
moduleTrapAlarmSeverity OBJECT-TYPE
SYNTAX INTEGER {
minor (1),
major (2),
dontCare (3),
critical (4),
error (5),
warning (6),
notice (7),
info (8)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is sent to managers as part of all Trap PDUs, to
determine the module alarm severity. An implementation may
not support all the possible values.
The Possible values are :
major (1) : Major Service has been impacted
minor (2) : Minor Service has been lost
dontCare (3) : severity is not applicable
critical (4) : affects existing data traffic
error (5) : error has occurred
warning (6) : a threshold has been reached
notice (7) : a normal but significant event has occurred
info (8) : informational
"
::= { cardInformation 15 }
mibVersionNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"MIB version number. Updated when any part of
the MIB changes.
"
DEFVAL { 2 }
::= { cardInformation 16 }
configChangeTypeBitMap OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Configuration change Type BitMap
bit 0 set = Card Configuration Change
bit 1 set = Line Configuration Change
bit 2 set = Port Configuration Change
bit 3 set = Chan Configuration Change
bit 4 set = STUN protocol group configuration Change
bit 5 set = STUN port configuration Change
bit 6 set = STUN route configuration Change
bit 7 set = BSTUN protocol configuration Change
bit 8 set = BSTUN port configuration Change
bit 9 set = BSTUN route configuration Change
bit 10 set = FRASBNN route configuration Change
bit 11 set = FRASBAN route configuration Change
bit 12 set = SDLC port configuration Change
bit 13 set = SDLC LS configuration Change
bit 14 set = BSC port configuration Change
bit 15 set = LLC port configuration Change
bit 16 set = card LCN partition change (controller based only)
bit 17 set = port resource partition change (under any partition type)
bit 18 set = VISM Endpoint Configuration Change
bit 19 set = Egress Q configuration change
default value is 0, no change
This object makes sense only in traps. A GET
on this may not return a Useful result.
Bit 19 is not applicable for MGX 8850 Release 1.x.x
and MGX 8220
"
DEFVAL { 0 }
::= { cardInformation 17 }
configChangeObjectIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Configuration change object index, could be
line number or port number or channel number
depends on the type bitmap, for port resouce
partition change (bit 17), this index is actually
constructed by (portNum << 16 | controller)
because the table has two indices.
When the 'Line Configuration Change' bit is set,
the configChangeObjectIndex has the following special meanings
in IMATM and FRSM-2CT3 cards:
IMATM - configChangeObjectIndex range between 1..8
indicates that the configuration change refers
to the DS1 line index. A value of 9 indicates that
the configuration change refers to the DS3 line index.
FRSM-2CT3 - configChangeObjectIndex range between 1..56
indicates that the configuration change refers
to the DS1 line index. A value of (128 + n)
refers to DS3 line index numbered 'n'.
This object makes sense only in traps. A GET
on this may not return a Useful result.
"
::= { cardInformation 18 }
configChangeStatus OBJECT-TYPE
SYNTAX INTEGER (0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is applicable only for traps.
The SNMP operation may not be meaningful.
The value contained in this object is same as
the value of the other objects which are used
for adding/deleting/modifying the row.
The possible values are
0 - No meaning and is not applicable.
1 - add [ Row added ]
2 - delete [ Row deleted ]
3 - mod [ Row modified ]
This value and value contained in configChangeTypeBitMap
represent the configuration change operation.
The default value is 0 and it does not
represent any status."
DEFVAL {0}
::= { cardInformation 19 }
cardIntegratedAlarmBitMap OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit position represents the different types of alarm
for ASC:
bit 0: ShelfFunctionModuleState (BNM only)
(failed/boot/mismatch/heldinReset)
bit 1: LineModuleState (BNM only) (notPresent/invalid)
bit 2: ASMPhysicalAlarmState (BNM only)
bit 3: ATMLMIFailure (ASC only)
bit 4: LineAlarmState (BNM only)
bit 5: LineStatisticalAlarmState (BNM only)
bit 6: PLCPAlarmState (BNM only)
bit 7: PLCPStatisticalAlarmState (BNM only)
bit 8: SmConnectionFailureAlarm
for SM:
bit 0: ShelfFunctionModuleState
(failed/boot/mismatch/heldinReset)
bit 1: LineModuleState (notPresent/invalid)
bit 2: PortLMIFailure
bit 3: LineAlarmState
bit 4: LineStatisticalAlarmState
bit 5: FrameRelayPortState (RemoteLoopback/
FailedDueToLine/
FailedDueToSig)
bit 6: ChannelState
for PXM/SRM Only (MGX8850 Platfrom):
Only those marked with SRM are valid for both PXM/SRM.
The rest are valid only for PXM.
bit 0 : ShelfFunctionModuleState
bit 1 : Backcard Line Module (SRM/PXM)
This Alarm is generated when the Line Module
(Trunk Backcard) is removed or goes to a mismatch
state(or backcard type is unknown).
bit 2 : Backcard UIModule
This Alarm is generated when the UI backcard is
removed or goes to a mismatch state
(or backcard type is unknown).
bit 3 : ASM Physical Alarm
This specifies whether any of the
environmental monitoring components like
Temperature, Voltage Supply, Fan Speed
have gone into alarm.
bit 4 : ATM LMI Failure
bit 5 : Line Alarm (SRM/PXM)
bit 6 : Line Statistical Alarm (SRM/PXM)
bit 7 : Lines Alarm (SRM/PXM)
bit 8 : PLCP Alarm
bit 9 : PLCP Statistical Alarm
bit 10 : Connections exist on removed SM
bit 11 : Disk related Failure on first PXM slot
bit 12 : Disk related Failure on second PXM slot
The Disk Alarms are generated when any of the
file operations on Disk like open,read,write,
lseek etc fail.
VSM Alarms
bit 13 : Port LMI Failure
bit 14 : Port State Alarm
bit 15 : Channel Shelf Alarm
bit 16 : Taskmon Task Suspended
bit 17 : Excess Power Consumption
bit 30 : bit set(1) major alarm, else (0) minor alarm
"
DEFVAL {0}
::= { cardInformation 20 }
cleiCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..10))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Common Language Equipment(CLEI) Code.
"
::= { cardInformation 21 }
macAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Ethernet address (base address) stored in
NVRAM, entered by manfacturing.
"
::= { cardInformation 22 }
macAddrBlkSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address block size, entered by
manufacturing.
"
::= { cardInformation 23 }
finalTestTechnician OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Final Test Technician Employee Identification Number.
"
::= { cardInformation 24 }
hwFailures OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hardware failure code."
::= { cardInformation 25 }
hwHistory OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"RMA Test History - RMA Failure Code."
::= { cardInformation 26 }
secLineModuleType OBJECT-TYPE
SYNTAX INTEGER {
other (1),
lm-ASC (2),
lm-DB15-4T1 (16),
lm-DB15-4E1 (17),
lm-BNC-4E1 (18),
lm-DB15-4T1-R(19),
lm-DB15-4E1-R(20),
lm-BNC-4E1-R (21),
lm-RJ48-8T1 (22),
lm-RJ48-8E1 (23),
lm-SMB-8E1 (24),
lm-RJ48-T3T1 (25),
lm-RJ48-E3E1 (26),
lm-RJ48-T3E1 (27),
lm-SMB-E3E1 (28),
lm-RJ48-E3T1 (29),
lm-SMB-T3E1 (30),
lm-T3E3-D (32),
lm-T3E3-B (33),
lm-155-SMF (34),
lm-155-UTP (35),
lm-RJ48-8T1-R(48),
lm-RJ48-8E1-R(49),
lm-SMB-8E1-R (50),
lm-3T3-B (51),
lm-HS1-4X21 (60),
lm-HS1-3HSSI (61),
-- HSSI/X.21
lm-HS1-4V35 (62),
lm-12In1-8s (63),
lm-BSCSM-2 (70),
lm-BSCSM-4 (71),
lm-BNC-2T3 (80),
lm-BNC-2E3 (81),
pxm-ui (500),
smfir-1-622 (501),
smflr-1-622 (502),
smfir15-1-622 (503),
smflr15-1-622 (504),
mmf-4-155 (505),
smfir-4-155 (506),
smflr-4-155 (507),
rj45-fe (511),
mmf-fe (512),
mmf-fddi (513),
smf-fddi (514),
rj45-4e (515),
pxm-ui-s3 (1006)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains the type of secondary
line module(back card).
Physically it is the bottom card behind the backplane.
Normally with connectors for physical devices.
These are specific to the front or function modules.
This Object is applicable only to selected MGX switches.
"
DEFVAL { other }
::= { cardInformation 27 }
secLineModuleDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of the Secondary line module.
This Object is applicable only to selected MGX switches.
"
::= { cardInformation 28 }
secLineModuleSerialNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..11))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Serial number of the secondary(bottom) line module.
This object is applicable only to selected MGX switches.
"
::= { cardInformation 29 }
secLineModuleHWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hardware revision for secondary (bottom) line module
This object is applicable only to selected MGX switches.
"
::= { cardInformation 30 }
secLineModuleFWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Firmware revision for Secondary line module
This object is applicable only to selected MGX switches.
If there is no Firmware revision,
then this object returns 0.
"
::= { cardInformation 31 }
secLineModuleState OBJECT-TYPE
SYNTAX INTEGER {
notPresent (1),
present (2),
invalid (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"line module status of secondary (bottom) back card.
This object is applicable only to selected MGX switches."
::= { cardInformation 32 }
configChangeParentObjectIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Parent object index, could be
- line index
- port index
This object will indicate the index of the immediate
higher level object (line or port) of configChangeObjectIndex.
This object is applicable only when configChangeObjectIndex
represents a channel, port, egress Q or resource partition
index.
Following specifies the mapping between the
configChangeObjectIndex and its corresponding
configChangeParentObjectIndex.
configChangeObjectIndex configChangeParentObjectIndex
----------------------- -----------------------------
Port Index Line Index
Egress Q Index Port Index
Resource Partition Index Port Index
Channel Index Port Index
When the 'Port Configuration Change' bit is set,
the configChangeParentObjectIndex will represent
a 'Line Index' which in turn has the following
special meaning in FRSM-2CT3 cards.
- configChangeParentObjectIndex range between 1..56
indicates that the configuration change refers to the DS1 line
index. A value of (128 + n) refers to DS3 line index
numbered 'n'.
This object object is applicable only in traps.
A GET on this may not return a useful result.
This object Object is not applicable to MGX 8850
Release 1.x.x and MGX8220
"
::= { cardInformation 33 }
configChangeGrandParentObjectIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Grand Parent object index, could be
- line index
This object will indicate the index of the immediate
higher level object (line) of configChangeParentObjectIndex.
This object is applicable only when configChangeParentObjectIndex
represents a port index.
Following specifies the mapping between the
configChangeParentObjectIndex and its corresponding
configChangeGrandParentObjectIndex.
When the 'Port Configuration Change' bit is set
the configChangeGrandParentObjectIndex will represent
a 'Line Index' which in turn has the following
special meaning in FRSM-2CT3 cards.
- configChangeParentObjectIndex range between 1..56
indicates that the configuration change refers to the DS1 line
index. A value of (128 + n) refers to DS3 line index
numbered 'n'.
This object is applicable only in traps.
A GET on this may not return a useful result.
This object is not applicable to MGX 8850
release 1.x.x and MGX8220."
::= { cardInformation 34 }
configChangeSMSpecificObject OBJECT-TYPE
SYNTAX INTEGER (0..'ffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" configChangeSMSpecificObject is a generic object
which is Service Module Specific. It can be used
for different purposes in different cards. The
usage of the same with regard to very card type is
listed below.
FRSM-8T1E1 - used to store portDs0ConfigBitMap
FRSM-VHS - used to store portDs0ConfigBitMap
CESM-8T1E1 - used to store cesPortDs0ConfigBitMap
CESM-T3E3 - not used
AUSM-8T1E1 - not used
This object is not applicable to MGX 8850
Release 1.x.x and MGX8220."
::= { cardInformation 35 }
transId OBJECT-TYPE
SYNTAX INTEGER (0..'7fffffff'h)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Per card transaction ID. This object is used to keep
track of configuration change on the card.
The transId will be incremented by one for every
configuration change on the card."
::= { cardInformation 36 }
-- ******************************************************************
--
-- Group "Interface"
-- This group contains list of physical interfaces and service types
-- available on a card.
-- Different line types are e.g. DS1,DS3,OC3 etc.
-- Different services are e.g. ATM,FrameRelay etc.
-- Any combination of line type and service type are possible for a card.
--
-- ******************************************************************
interfaceNumOfValidEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of rows in interface Table
The number represents the physcial interfaces the module has.
"
::= { cardInterface 2 }
interfaceLineTable OBJECT-TYPE
SYNTAX SEQUENCE OF InterfaceLineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table has list of the physical interfaces