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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
|
ZTE-AN-CHASSIS-MIB DEFINITIONS ::= BEGIN
IMPORTS
RowStatus FROM SNMPv2-TC
DisplayString FROM SNMPv2-TC
TruthValue FROM SNMPv2-TC
DateAndTime FROM SNMPv2-TC
MODULE-IDENTITY FROM SNMPv2-SMI
OBJECT-TYPE FROM SNMPv2-SMI
Integer32 FROM SNMPv2-SMI
NOTIFICATION-TYPE FROM SNMPv2-SMI
zxAccessNode FROM ZTE-AN-SMI
zxAnEquipment FROM ZTE-AN-SMI
MODULE-COMPLIANCE FROM SNMPv2-CONF
OBJECT-GROUP FROM SNMPv2-CONF
NOTIFICATION-GROUP FROM SNMPv2-CONF;
zxAnChassisMib MODULE-IDENTITY
LAST-UPDATED "201405220000Z"
ORGANIZATION "ZTE Corporation"
CONTACT-INFO "Dai YiDong ZTE Corporation
Mail: dai.yidong1@zte.com.cn
Tel : +86-21-68897315"
DESCRIPTION "This MIB defines zte Access Node chassis managed objects."
REVISION "201405220000Z"
DESCRIPTION
"Add the 'unauthorized' status of the card and the power saving
enabling of the card."
REVISION "201405140000Z"
DESCRIPTION
"Add the last startup time of the card."
REVISION "201105260000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { zxAnEquipment 1 }
-------------------------------------------------------------------------------
-- Following management objects are defined.
-- 1. Chassis Global Objects
-- 2. Rack Properties Table
-- 3. Shelf Properties Table
-- 4. Card Properties Table
-- 5. Subcard Properties Table
-- 6. Card CPU Properties Table
-- 7. Storage Device Properties Table
-- Following notification objects are defined.
-- 21. zxAnChassisSysTraps
-- 22. zxAnChassisCardTraps
-- 23. zxAnChassisSubcardTraps
-- Following conformance information is defined.
-- 31. zxAnChassisConformance
-------------------------------------------------------------------------------
zxAnChassisGlobalObjects OBJECT IDENTIFIER ::= { zxAnChassisMib 1 }
zxAnChassisObjects OBJECT IDENTIFIER ::= { zxAnChassisMib 2 }
zxAnChassisNotifications OBJECT IDENTIFIER ::= { zxAnChassisMib 3 }
zxAnChassisSysTraps OBJECT IDENTIFIER ::= { zxAnChassisNotifications 1 }
zxAnChassisCardTraps OBJECT IDENTIFIER ::= { zxAnChassisNotifications 2 }
zxAnChassisSubcardTraps OBJECT IDENTIFIER ::= { zxAnChassisNotifications 3 }
-------------------------------------------------------------------------------
-- 1. Chassis Global
-------------------------------------------------------------------------------
zxAnChassisSysReboot OBJECT-TYPE
SYNTAX INTEGER
{
rebootSystem (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reboot system."
::= { zxAnChassisGlobalObjects 1 }
zxAnChassisSysLastRebootReason OBJECT-TYPE
SYNTAX INTEGER
{
byCli(1),
byNms(2),
byWatchdog(3),
byPowerOff(4),
bySoftwareRestart(5),
byProcessSuspended(6),
unknown (99)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "It indicates device coldstart or warmstart reason
byCli(1) warmstart by command,
byNms(2) warmstart by network management,
byWatchdog(3) warmstart by watchdog,
byPowerOff(4) coldstart by poweroff,
byProcessSuspended(6) warmstart by process suspended,
unknown (99) restart by other reason."
::= { zxAnChassisGlobalObjects 2 }
zxAnChassisSysLastSwapReason OBJECT-TYPE
SYNTAX INTEGER
{
forced(1),
cardOffline(2),
reset(3),
cardDown(99)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Last swap request,such as force,plug-out or others.
forced(1) swap by command or network management,
cardOffline(2) swap by the main control board poweroff
or pull out,
reset(3) swap by the main control board reset self,
cardDown(99) swap by other reason."
::= { zxAnChassisGlobalObjects 3 }
zxAnChassisPnpMode OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "config Ne card PNP mode,PNP mode means when card on shelf,
then this card can use without add it"
::= { zxAnChassisGlobalObjects 4 }
-------------------------------------------------------------------------------
-- 2.Rack properties table
-------------------------------------------------------------------------------
zxAnRackTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnRackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the enable or disable plug and play of
the rack."
::= { zxAnChassisObjects 2 }
zxAnRackEntry OBJECT-TYPE
SYNTAX ZxAnRackEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnRackTable."
INDEX { zxAnRack }
::= { zxAnRackTable 1 }
ZxAnRackEntry ::= SEQUENCE {
zxAnRack Integer32,
zxAnRackActualType Integer32,
zxAnRackConfType Integer32,
zxAnRackInvSn DisplayString,
zxAnRackRowStatus RowStatus
}
zxAnRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The range of zxAnRack is 1~1 for DT"
::= { zxAnRackEntry 1 }
zxAnRackActualType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This MIB is defined for actual rack type."
::= { zxAnRackEntry 2 }
zxAnRackConfType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This MIB is defined for configged rack type."
::= { zxAnRackEntry 3 }
zxAnRackInvSn OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This MIB is defined for serial number of this rack.
it is used by inventroy management."
::= { zxAnRackEntry 4 }
zxAnRackRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
In particular, a newly created row cannot be created
until the corresponding zxAnRackConfType have been set.
To delete a row in this table, a manager must
set this object to destroy(6). "
::= { zxAnRackEntry 50 }
-------------------------------------------------------------------------------
-- 2.Shelf properties table
-------------------------------------------------------------------------------
zxAnShelfTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnShelfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the enable or disable plug and play of
the shelf."
::= { zxAnChassisObjects 3 }
zxAnShelfEntry OBJECT-TYPE
SYNTAX ZxAnShelfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnShelfTable."
INDEX { zxAnRack,zxAnShelf }
::= { zxAnShelfTable 1 }
ZxAnShelfEntry ::= SEQUENCE {
zxAnShelf Integer32,
zxAnShelfHardwareVersion DisplayString,
zxAnShelfActualType Integer32,
zxAnShelfConfType Integer32,
zxAnShelfInvSn DisplayString,
zxAnShelfCleiCode DisplayString,
zxAnLogicShelfNo Integer32,
zxAnShelfRowStatus RowStatus
}
zxAnShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The range of zxAnShelf is 1~1 for DT"
::= { zxAnShelfEntry 1 }
zxAnShelfHardwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hard driver on the shelf."
::= { zxAnShelfEntry 2 }
zxAnShelfActualType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actual shelf type."
::= { zxAnShelfEntry 3 }
zxAnShelfConfType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The configuration shelf type."
::= { zxAnShelfEntry 4 }
zxAnShelfInvSn OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The serial number of this shelf.
it is used by inventroy management."
::= { zxAnShelfEntry 5 }
zxAnShelfCleiCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The CLEI code of this Shelf.
it is used by inventroy management.Please reference
http://www.commonlanguage.com to get knowledge about
CLEI code.
"
REFERENCE "http://www.commonlanguage.com"
::= { zxAnShelfEntry 6 }
zxAnLogicShelfNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The logic Shelf number"
::= { zxAnShelfEntry 7 }
zxAnShelfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
In particular, a newly created row cannot be created
until the corresponding zxAnShelfConfType have been set.
To delete a row in this table, a manager must
set this object to destroy(6). "
::= { zxAnShelfEntry 50 }
-------------------------------------------------------------------------------
-- 3.Card properties table
-------------------------------------------------------------------------------
zxAnCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the enable or disable plug and play of
the Card."
::= { zxAnChassisObjects 4 }
zxAnCardEntry OBJECT-TYPE
SYNTAX ZxAnCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnCardTable."
INDEX { zxAnRack, zxAnShelf, zxAnSlot }
::= { zxAnCardTable 1 }
ZxAnCardEntry ::= SEQUENCE {
zxAnSlot Integer32,
zxAnCardConfMainType Integer32,
zxAnCardActualMainType Integer32,
zxAnCardActualType DisplayString,
zxAnCardOperStatus INTEGER,
zxAnCardAdminStatus INTEGER,
zxAnCardPortNums Integer32,
zxAnCardActivePortNums Integer32,
zxAnCardCpuLoad Integer32,
zxAnCardCpuLoadThreshold Integer32,
zxAnCardMemUsage Integer32,
zxAnCardMemUsageThreshold Integer32,
zxAnCardStandbyStatus INTEGER,
zxAnCardInvSn DisplayString,
zxAnCardCleiCode DisplayString,
zxAnCardAccessoriesType DisplayString,
zxAnCardAccessoriesOperStatus INTEGER,
zxAnCardMemSize Integer32,
zxAnCardAvailableStorageSize Integer32,
zxAnCardTotalStorageSize Integer32,
zxAnCardHardwareVersion DisplayString,
zxAnCardPowerSavingEnable INTEGER,
zxAnCardLastStartupTime DateAndTime,
zxAnCardCpldVersion DisplayString,
zxAnCardFirmwareVersion DisplayString,
zxAnCardOtherFirmwareVersions DisplayString,
zxAnCardRowStatus RowStatus
}
zxAnSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The range of zxAnSlot is 0~20 for DT IEC-SHELF,
and the range of zxAnSlot is 0~22 for DT ETSI-SHELF
"
::= { zxAnCardEntry 1 }
zxAnCardConfMainType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The main card type to config on the slot. Main card
type indicates the category of hardware, such as
64-ports adsl card,4-ports ethernet card."
::= { zxAnCardEntry 2 }
zxAnCardActualMainType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actually main card type on the slot."
::= { zxAnCardEntry 3 }
zxAnCardActualType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actually card type on the slot. Card type
indicates the type of detailed hardware,such as ATUGA
and ATUGB, they'er all 32-ports Adsl card and they all
provide general Adsl service,but they have different
chips.
NOTE: The value of this variable MUST abide by ZTE'S
discipline for card naming.And It MUST capital letters.
"
::= { zxAnCardEntry 4 }
zxAnCardOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
inService (1),
notInService(2),
hwOnline(3),
hwOffline(4),
configuring(5),
configFailed(6),
typeMismatch(7),
deactived(8),
faulty(9),
invalid(10),
noPower(11),
unauthorized(12),
powerSaving(34)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This MIB is defined for the card status.
inService(1) -- card plugged in,running normally and service is
being provided normally.
notInService(2)-- card plugged in,running normally but service is
stopped.
hwOnline(3) -- card plugged in and card communication is ok, but
software isn't running now.
hwOffline(4) -- card is pulled out or card not plugged in, but
added to agent's database only.
configuring(5) -- card plugged in, but it is configuring.
configFailed(6)-- card plugged in, but configuration failed.
typeMismatch(7)-- card plugged in, but it's type is mismatch.
deactived(8) -- card plugged in, but it is deactivated by a
manager.
faulty(9) -- fault occurs when card is running normally
invalid(10) -- invalid card instance, such as adding card failed.
noPower(11) -- power card plugged in, but no power input.
unauthorized(12) -- card plugged in, but it's bugsell and the
software of the card doesn't run now.
powerSaving(34) -- card plugged in, but it's power saving status.
"
::= { zxAnCardEntry 5 }
zxAnCardAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
reset(1),
switch(2),
stopService(3),
active(4),
deactive(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This MIB is defined for the card admin status on the
card. For example:reset(1),switch(2)
reset(1) -- reset the card.
switch(2) -- switch card between master and slave
status.
stopService(3) -- stop service normally.
active(4) -- activate this card and enable the
service.
deactive(5) -- deactivate this card and disable the
service forcedly.
"
::= { zxAnCardEntry 6 }
zxAnCardPortNums OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The numbers of physical port which contained
in this board.
If the board has no this attribute,it should be 0."
::= { zxAnCardEntry 7 }
zxAnCardActivePortNums OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The numbers of actived physical port which contained
in this board.
If the board has no this attribute,it should be 0."
::= { zxAnCardEntry 8 }
zxAnCardCpuLoad OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current CPU load of this board.If this board has
more than one CPU,the average value is allowed.
If the board has no this attribute,it should be 0."
::= { zxAnCardEntry 9 }
zxAnCardCpuLoadThreshold OBJECT-TYPE
SYNTAX Integer32 (1..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The CPU load threshold of this board.When
zxAnCardCpuLoad is higher than
zxAnCardCpuLoadThreshold,zxAnChassisCardCpuOverloadAlm
trap should be generated by agent."
::= { zxAnCardEntry 10 }
zxAnCardMemUsage OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current memory usage of this board.
If the board has no this attribute,it should be 0."
::= { zxAnCardEntry 11 }
zxAnCardMemUsageThreshold OBJECT-TYPE
SYNTAX Integer32 (1..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The memory usage threshold of this board. When
zxAnCardMemUsage is higher than
zxAnCardMemUsageThreshold,zxAnChassisCardMemOverloadAlm
trap should be generated by agent."
::= { zxAnCardEntry 12 }
zxAnCardStandbyStatus OBJECT-TYPE
SYNTAX INTEGER
{
main(1),
standby(2),
unknown(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The card operation status on the card."
::= { zxAnCardEntry 13 }
zxAnCardInvSn OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The serial number of this card.
it is used by inventroy management."
::= { zxAnCardEntry 14 }
zxAnCardCleiCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The CLEI code of this card.
it is used by inventroy management.Please reference
http://www.commonlanguage.com to get knowledge about
CLEI code."
REFERENCE "http://www.commonlanguage.com"
::= { zxAnCardEntry 15 }
zxAnCardAccessoriesType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accessories type of this card, such as splitter
of DSLAM,the value of this variable should be the type
of hardware, eg. PNVTA,PNVNP,PNVNA of ZXDSL9800's
splitter."
::= { zxAnCardEntry 16 }
zxAnCardAccessoriesOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3),
unknow(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational status of the card accessories."
::= { zxAnCardEntry 17 }
zxAnCardMemSize OBJECT-TYPE
SYNTAX Integer32
UNITS "MB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current memory size of this board.
If the board has no this attribute,it should be 0."
::= { zxAnCardEntry 19 }
zxAnCardAvailableStorageSize OBJECT-TYPE
SYNTAX Integer32
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The available storage space size in this card."
::= { zxAnCardEntry 21 }
zxAnCardTotalStorageSize OBJECT-TYPE
SYNTAX Integer32
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total storage space size in this card."
::= { zxAnCardEntry 22 }
zxAnCardHardwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hard version in this card."
::= { zxAnCardEntry 23 }
zxAnCardPowerSavingEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Enable or disable the power saving of the card."
DEFVAL { disabled }
::= { zxAnCardEntry 24 }
zxAnCardLastStartupTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The last startup time of the card."
::= { zxAnCardEntry 25 }
zxAnCardCpldVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The CPLD version in this card."
::= { zxAnCardEntry 26 }
zxAnCardFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware version in this card."
::= { zxAnCardEntry 27 }
zxAnCardOtherFirmwareVersions OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The other firmware versions in this card."
::= { zxAnCardEntry 28 }
zxAnCardRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
In particular, a newly created row cannot be created
until the corresponding zxAnExampleFunc2Xxx1Var1
and zxAnExampleFunc2Xxx1Var2 have been set.
To delete a row in this table, a manager must
sets this object to destroy(6). "
::= { zxAnCardEntry 50 }
-------------------------------------------------------------------------------
-- 4.Subcard properties table
-------------------------------------------------------------------------------
zxAnSubcardTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSubcardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the enable or disable plug and play of
the subcard."
::= { zxAnChassisObjects 5 }
zxAnSubcardEntry OBJECT-TYPE
SYNTAX ZxAnSubcardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSubcardTable."
INDEX { zxAnRack,zxAnShelf,zxAnSlot,zxAnSubcard }
::= { zxAnSubcardTable 1 }
ZxAnSubcardEntry ::= SEQUENCE {
zxAnSubcard Integer32,
zxAnSubcardConfMainType Integer32,
zxAnSubcardActualMainType Integer32,
zxAnSubcardActualType DisplayString,
zxAnSubcardOperStatus INTEGER,
zxAnSubcardAdminStatus INTEGER,
zxAnSubcardPortNums Integer32,
zxAnSubcardActivePortNums Integer32,
zxAnSubcardCpuLoad Integer32,
zxAnSubcardMemUsage Integer32,
zxAnSubcardInvSn DisplayString,
zxAnSubcardCleiCode DisplayString,
zxAnSubcardMemSize Integer32,
zxAnSubcardHardwareVersion DisplayString,
zxAnSubcardRowStatus RowStatus
}
zxAnSubcard OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION ""
::= { zxAnSubcardEntry 1 }
zxAnSubcardConfMainType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The main subcard type to config on the slot. Main
subcard type indicates the category of hardware,such
as 4-ports ethernet subcard."
::= { zxAnSubcardEntry 2 }
zxAnSubcardActualMainType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actually main subcard type on the slot."
::= { zxAnSubcardEntry 3 }
zxAnSubcardActualType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actually subcard type on the slot. It indicates
the type of detailed hardware.
NOTE: The value of this variable MUST abide by ZTE'S
discipline for card naming.And It MUST capital letters.
"
::= { zxAnSubcardEntry 4 }
zxAnSubcardOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
inService (1),
notInService(2),
hwOnline(3),
hwOffline(4),
configuring(5),
configFailed(6),
typeMismatch(7),
deactived(8),
faulty(9),
invalid(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This MIB is defined for the sub card status on the
card.
inService(1) -- card pluged in,running normally and service is
being provided normally.
notInService(2)-- card pluged in,running normally but service is
stopped.
hwOffline(3) -- card not pluged in,but added to agent's database
only
hwOnline(4) -- card pluged in,but software isn't running now.
configuring(5) -- card pluged in,but it is configuring
configFailed(6)-- card pluged in,but configuration failed
typeMismatch(7)-- card pluged in,but it's type is mismatch
deactived(8) -- card pluged in,but it is deactivated by a manager
faulty(9) -- fault occurs when card is running normally
invalid(10) -- invalid card instance,such as adding card failed.
"
::= { zxAnSubcardEntry 5 }
zxAnSubcardAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
reset(1),
switch(2),
stopService(3),
active(4),
deactive(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This MIB is defined for the card admin status on the
card. For example:reset(1),switch(2)
reset(1) -- reset the card.
switch(2) -- switch card between master and slave
status.
stopService(3) -- stop service normally.
active(4) -- activate this card and enable the
service.
deactive(5) -- deactivate this card and disable the
service forcedly.
"
::= { zxAnSubcardEntry 6 }
zxAnSubcardPortNums OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The numbers of physical port which contained in this
board.
If the board has no this attribute,it should be 0."
::= { zxAnSubcardEntry 7 }
zxAnSubcardActivePortNums OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The numbers of actived physical port which contained
in this board.
If the board has no this attribute,it should be 0."
::= { zxAnSubcardEntry 8 }
zxAnSubcardCpuLoad OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current CPU load of this board.If this board has
more than one CPU,the average value is allowed.
If the board has no this attribute,it should be 0."
::= { zxAnSubcardEntry 9 }
zxAnSubcardMemUsage OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current memory usage of this board.
If the board has no this attribute,it should be 0."
::= { zxAnSubcardEntry 10 }
zxAnSubcardInvSn OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The serial number of this subcard.
it is used by inventroy management."
::= { zxAnSubcardEntry 11 }
zxAnSubcardCleiCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The CLEI code of this card.
it is used by inventroy management.Please reference
http://www.commonlanguage.com to get knowledge about
CLEI code."
REFERENCE "http://www.commonlanguage.com"
::= { zxAnSubcardEntry 12 }
zxAnSubcardMemSize OBJECT-TYPE
SYNTAX Integer32
UNITS "MB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current memory size of this sub card.
If the board has no this attribute,it should be 0."
::= { zxAnSubcardEntry 13 }
zxAnSubcardHardwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hard version in this sub card."
::= { zxAnSubcardEntry 14 }
zxAnSubcardRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row status of this entry."
::= { zxAnSubcardEntry 50 }
-------------------------------------------------------------------------------
-- 5. PNP mode
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- 6. Card CPU Properties Table
-------------------------------------------------------------------------------
zxAnCardCpuTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardCpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the CPU information of the card."
::= { zxAnChassisObjects 6 }
zxAnCardCpuEntry OBJECT-TYPE
SYNTAX ZxAnCardCpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in zxAnCardCpuTable."
INDEX { zxAnRack,
zxAnShelf,
zxAnSlot,
zxAnCardCpuId
}
::= { zxAnCardCpuTable 1 }
ZxAnCardCpuEntry ::= SEQUENCE {
zxAnCardCpuId Integer32,
zxAnCardCpuUsage Integer32
}
zxAnCardCpuId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The CPU ID of the card."
::= { zxAnCardCpuEntry 1 }
zxAnCardCpuUsage OBJECT-TYPE
SYNTAX Integer32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CPU usage of the zxAnCardCpuId."
::= { zxAnCardCpuEntry 2 }
-------------------------------------------------------------------------------
-- 7. Storage Device Properties Table
-------------------------------------------------------------------------------
zxAnStorageDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnStorageDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes file storage devices information."
::= { zxAnChassisObjects 7 }
zxAnStorageDeviceEntry OBJECT-TYPE
SYNTAX ZxAnStorageDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnStorageDeviceTable."
INDEX {zxAnRack,
zxAnShelf,
zxAnSlot,
zxAnStorageDeviceId}
::= { zxAnStorageDeviceTable 1 }
ZxAnStorageDeviceEntry ::= SEQUENCE {
zxAnStorageDeviceId Integer32,
zxAnStorageDeviceAccessEnable INTEGER,
zxAnStorageDeviceOperStatus INTEGER,
zxAnStorageDeviceAccessStatus INTEGER,
zxAnStorageDeviceTotalSpace Integer32,
zxAnStorageDeviceAvailableSpace Integer32
}
zxAnStorageDeviceId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of the storage device.
The numbering rule is:
1: Flash1,
2: SD card,
3: RAM card,
4: Flash2,
...
"
::= { zxAnStorageDeviceEntry 1 }
zxAnStorageDeviceAccessEnable OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables and disables the access permissions to the storage device.
If the storage device is disabled, the storage device can't be read
or written."
::= { zxAnStorageDeviceEntry 2 }
zxAnStorageDeviceOperStatus OBJECT-TYPE
SYNTAX INTEGER{
online(1),
offline(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the storage device."
::= { zxAnStorageDeviceEntry 3 }
zxAnStorageDeviceAccessStatus OBJECT-TYPE
SYNTAX INTEGER{
idle(1),
busy(2),
locked(3),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The access status of the storage device.
idle(1): the storage device can be read or written.
busy(2): the storage device is being read or written.
locked(3): the storage device can be read, but can't be written.
unknown(255): unknown."
::= { zxAnStorageDeviceEntry 4 }
zxAnStorageDeviceTotalSpace OBJECT-TYPE
SYNTAX Integer32
UNITS "MB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total space of the storage device."
::= { zxAnStorageDeviceEntry 5 }
zxAnStorageDeviceAvailableSpace OBJECT-TYPE
SYNTAX Integer32
UNITS "MB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The available space of the storage device."
::= { zxAnStorageDeviceEntry 6 }
-------------------------------------------------------------------------------
-- 21 zxAnChassisSysTraps
-------------------------------------------------------------------------------
zxAnChassisCtrlCardSwappedAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardOperStatus,zxAnChassisSysLastSwapReason }
STATUS current
DESCRIPTION
"A zxAnChassisCtrlCardSwappedAlm trap indicates that the main
control card has swapped to slave card."
::= { zxAnChassisSysTraps 2 }
zxAnChassisCtrlCardSwappedClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnChassisCtrlCardSwappedClr trap indicates that the main
control card swapped trap has cleared."
::= { zxAnChassisSysTraps 3 }
--------------------------------------------------------------------------------
-- 22 zxAnChassisCardTraps
--------------------------------------------------------------------------------
zxAnChassisCardOffline NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus,
zxAnCardOperStatus,zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardOffline trap is sent when the agent
has detected that the configured card has plugged out."
::= { zxAnChassisCardTraps 1 }
zxAnChassisCardOnline NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType, zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardOnline trap is sent when the agent
has detected that the configured card has plugged in."
::= { zxAnChassisCardTraps 2 }
zxAnChassisCardTypeMismatchAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardTypeMismatchAlm trap is sent when the agent
has detected that the card has plugged in ,but
zxAnCardConfMainType is not same as zxAnCardActualType."
::= { zxAnChassisCardTraps 3 }
zxAnChassisCardTypeMismatchClr NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardTypeMismatchClr trap is sent when the agent
has detected that the card has plugged in and
zxAnCardConfMainType is same as zxAnCardActualType.
"
::= { zxAnChassisCardTraps 4 }
zxAnChassisCardNotRunningAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardNotRunningAlm trap is sent when the agent has
detected that the card has plugged in and configured, but it is not
running."
::= { zxAnChassisCardTraps 5 }
zxAnChassisCardNotRunningClr NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardNotRunningClr trap is sent when the agent
has detected that the card is inservice.
"
::= { zxAnChassisCardTraps 6 }
zxAnChassisCardNotConfiguredAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnEquipCardNotConfigured trap is sent when the agent
has detected that the card has plugged in but
not configured."
::= { zxAnChassisCardTraps 7 }
zxAnChassisCardNotConfiguredClr NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,zxAnCardActualMainType,
zxAnCardActualType,zxAnCardAdminStatus, zxAnCardOperStatus,
zxAnCardInvSn }
STATUS current
DESCRIPTION
"A zxAnChassisCardNotConfiguredClr trap is sent when the agent
has detected that the card has plugged in and
configured.
"
::= { zxAnChassisCardTraps 8 }
zxAnChassisCardCpuOverloadAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardCpuLoad, zxAnCardCpuLoadThreshold }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
zxAnChassisCardCPULoad object of one card has exceeded the
configured threshhold value of zxAnCardCpuLoadThreshhold."
::= { zxAnChassisCardTraps 20 }
zxAnChassisCardCpuOverloadClr NOTIFICATION-TYPE
OBJECTS { zxAnCardCpuLoad, zxAnCardCpuLoadThreshold }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
zxAnChassisCardCPULoad object of one card has less than the
configured threshhold value of zxAnCardCpuLoadThreshhold."
::= { zxAnChassisCardTraps 21 }
zxAnChassisCardMemOverloadAlm NOTIFICATION-TYPE
OBJECTS { zxAnCardMemUsage, zxAnCardMemUsageThreshold }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
zxAnChassisCardMemUsage object of one card has exceeded the
configured threshhold value of zxAnCardMemUsageThreshhold."
::= { zxAnChassisCardTraps 22 }
zxAnChassisCardMemOverloadClr NOTIFICATION-TYPE
OBJECTS { zxAnCardMemUsage, zxAnCardMemUsageThreshold }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
zxAnChassisCardMemUsage object of one card has less than the
configured threshhold value of zxAnCardMemUsageThreshhold."
::= { zxAnChassisCardTraps 23 }
zxAnChassisCardResourceAdded NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,
zxAnCardActualMainType,
zxAnCardPortNums,
zxAnSwCardVersion,
zxAnCardHardwareVersion
}
STATUS current
DESCRIPTION
"A zxAnChassisCardResourceAdded trap is sent when the agent has
detected that the card has come into inService status."
::= { zxAnChassisCardTraps 24 }
zxAnChassisCardResourceDeleted NOTIFICATION-TYPE
OBJECTS { zxAnCardConfMainType,
zxAnCardActualMainType,
zxAnCardPortNums,
zxAnSwCardVersion,
zxAnCardHardwareVersion
}
STATUS current
DESCRIPTION
"A zxAnChassisCardResourceDeleted trap is sent when the agent has
detected that the card has been deleted."
::= { zxAnChassisCardTraps 25 }
--------------------------------------------------------------------------------
-- 23. zxAnChassisSubcardTraps
--------------------------------------------------------------------------------
zxAnChassisSubcardDown NOTIFICATION-TYPE
OBJECTS { zxAnSubcardConfMainType, zxAnSubcardActualMainType,
zxAnSubcardOperStatus }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
subcard operational status is abnormal."
::= { zxAnChassisSubcardTraps 1 }
zxAnChassisSubcardUp NOTIFICATION-TYPE
OBJECTS { zxAnSubcardConfMainType,zxAnSubcardActualMainType,
zxAnSubcardOperStatus }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
subcard has been online and come into inservice status."
::= { zxAnChassisSubcardTraps 2 }
-------------------------------------------------------------------------------
-- 31. zxAnChassisConformance
-------------------------------------------------------------------------------
zxAnChassisConformance OBJECT IDENTIFIER ::= { zxAnChassisMib 4 }
zxAnChassisCompliances OBJECT IDENTIFIER ::= { zxAnChassisConformance 1 }
zxAnChassisGroups OBJECT IDENTIFIER ::= { zxAnChassisConformance 2 }
zxAnChassisCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement the
ZTE-AN-CHASSIS-MIB."
MODULE -- this module
MANDATORY-GROUPS {
zxAnChassisSysMgmtGroup,
zxAnChassisRackMgmtGroup,
zxAnChassisShelfMgmtGroup,
zxAnChassisCardMgmtGroup,
zxAnChassisSubCardMgmtGroup,
zxAnChassisSysTrapsGroup,
zxAnChassisCardTrapsGroup
}
::= { zxAnChassisCompliances 1 }
zxAnChassisSysMgmtGroup OBJECT-GROUP
OBJECTS { zxAnChassisSysReboot,
zxAnChassisSysLastRebootReason,
zxAnChassisSysLastSwapReason,
zxAnChassisPnpMode
}
STATUS current
DESCRIPTION
"The notifications which indicate reboot,set-pnp and last reboot or
swap reason."
::= { zxAnChassisGroups 1 }
zxAnChassisRackMgmtGroup OBJECT-GROUP
OBJECTS { zxAnRackActualType,
zxAnRackConfType,
zxAnRackInvSn,
zxAnRackRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent rack
information and to manage rack."
::= { zxAnChassisGroups 2 }
zxAnChassisShelfMgmtGroup OBJECT-GROUP
OBJECTS { zxAnShelfHardwareVersion,
zxAnShelfActualType,
zxAnShelfConfType,
zxAnShelfInvSn,
zxAnShelfCleiCode,
zxAnLogicShelfNo,
zxAnShelfRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent shelf
information and to manage shelf."
::= { zxAnChassisGroups 3 }
zxAnChassisCardMgmtGroup OBJECT-GROUP
OBJECTS { zxAnCardConfMainType,
zxAnCardActualMainType,
zxAnCardActualType,
zxAnCardOperStatus,
zxAnCardAdminStatus,
zxAnCardPortNums,
zxAnCardActivePortNums,
zxAnCardCpuLoad,
zxAnCardCpuLoadThreshold,
zxAnCardMemUsage,
zxAnCardMemUsageThreshold,
zxAnCardStandbyStatus,
zxAnCardInvSn,
zxAnCardCleiCode,
zxAnCardAccessoriesType,
zxAnCardAccessoriesOperStatus,
zxAnCardMemSize,
zxAnCardAvailableStorageSize,
zxAnCardTotalStorageSize,
zxAnCardHardwareVersion,
zxAnCardRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent card
information and to manage card."
::= { zxAnChassisGroups 4 }
zxAnChassisSubCardMgmtGroup OBJECT-GROUP
OBJECTS { zxAnSubcardConfMainType,
zxAnSubcardActualMainType,
zxAnSubcardActualType,
zxAnSubcardOperStatus,
zxAnSubcardAdminStatus,
zxAnSubcardPortNums,
zxAnSubcardActivePortNums,
zxAnSubcardCpuLoad,
zxAnSubcardMemUsage,
zxAnSubcardInvSn,
zxAnSubcardCleiCode,
zxAnSubcardMemSize,
zxAnSubcardHardwareVersion,
zxAnSubcardRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent subcard
information and to manage subcard."
::= { zxAnChassisGroups 5 }
zxAnChassisSysTrapsGroup OBJECT-GROUP
OBJECTS { zxAnChassisCtrlCardSwappedAlm,
zxAnChassisCtrlCardSwappedClr
}
STATUS current
DESCRIPTION
"The notifications which indicate swap information."
::= { zxAnChassisGroups 6 }
zxAnChassisCardTrapsGroup OBJECT-GROUP
OBJECTS { zxAnChassisCardOffline,
zxAnChassisCardOnline,
zxAnChassisCardTypeMismatchAlm,
zxAnChassisCardTypeMismatchClr,
zxAnChassisCardNotConfiguredAlm,
zxAnChassisCardNotConfiguredClr,
zxAnChassisCardNotRunningAlm,
zxAnChassisCardNotRunningClr,
zxAnChassisCardCpuOverloadAlm,
zxAnChassisCardCpuOverloadClr,
zxAnChassisCardMemOverloadAlm,
zxAnChassisCardMemOverloadClr,
zxAnChassisCardResourceAdded,
zxAnChassisCardResourceDeleted
}
STATUS current
DESCRIPTION
"The notifications which indicate specific changes, include card
status, card cpu load status and memory load status."
::= { zxAnChassisGroups 7 }
END
|