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
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
|
ZTE-AN-SOFTWARE-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString FROM SNMPv2-TC
DateAndTime FROM SNMPv2-TC
TruthValue FROM SNMPv2-TC
MODULE-IDENTITY FROM SNMPv2-SMI
OBJECT-TYPE FROM SNMPv2-SMI
Integer32 FROM SNMPv2-SMI
NOTIFICATION-TYPE FROM SNMPv2-SMI
zxAnSystem FROM ZTE-AN-SMI
MODULE-COMPLIANCE FROM SNMPv2-CONF
OBJECT-GROUP FROM SNMPv2-CONF
NOTIFICATION-GROUP FROM SNMPv2-CONF;
zxAnSoftwareMib MODULE-IDENTITY
LAST-UPDATED "201105260000Z"
ORGANIZATION "ZTE Corporation"
CONTACT-INFO "Zhou YuBin ZTE Corporation
Mail: zhou.yubing@zte.com.cn
Tel : +86-21-68897315"
DESCRIPTION "This MIB defines zte Access Node software management."
REVISION "201105260000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { zxAnSystem 30 }
-------------------------------------------------------------------------------
-- Following management objects are defined.
-- 1. Card Running Software Information Table
-- 2. Subcard Running Software Information Table
-- 3. Saved Software Information Table
-- 4. Software Manual Update Management Table
-- 5. Software Manual Update Status Table
-- 6. Subcard Software Manual Update Status Table
-- 7. Software Automatic Update Check Management Table
-- 8. Software Automatic Update Management Table
-- 9. Software Swap Management Table
-- 10. Saved Patch Information Table
-- 11. Card Patch Running Status Information Table
-- 12. Subcard Running Patch Information Table
-- 13. Saved Patch Package Information Table
-- 14. Saved Patch Package File Information Table
-- Following notification objects are defined.
-- 21. Software Notification
-- Following conformance information is defined.
-- 31. Software Conformance
-------------------------------------------------------------------------------
zxAnSwObjects OBJECT IDENTIFIER ::= { zxAnSoftwareMib 2 }
zxAnSwNotifications OBJECT IDENTIFIER ::= { zxAnSoftwareMib 3 }
zxAnCardSwObjects OBJECT IDENTIFIER ::= { zxAnSwObjects 2 }
zxAnSwUpdateObjects OBJECT IDENTIFIER ::= { zxAnSwObjects 3 }
zxAnSwSwapObjects OBJECT IDENTIFIER ::= { zxAnSwObjects 4 }
zxAnCardPatchObjects OBJECT IDENTIFIER ::= { zxAnSwObjects 5 }
zxAnSwManualUpdateObjects OBJECT IDENTIFIER ::= { zxAnSwUpdateObjects 2 }
zxAnSwManualUpdateGlobalObjects OBJECT IDENTIFIER ::= { zxAnSwManualUpdateObjects 1 }
zxAnSwAutoUpdateObjects OBJECT IDENTIFIER ::= { zxAnSwUpdateObjects 3 }
zxAnSwAutoUpdateGlobalObjects OBJECT IDENTIFIER ::= { zxAnSwAutoUpdateObjects 1 }
zxAnSwAutoUpdateChkObjects OBJECT IDENTIFIER ::= { zxAnSwAutoUpdateGlobalObjects 1 }
zxAnSwAutoUpdateOperObjects OBJECT IDENTIFIER ::= { zxAnSwAutoUpdateGlobalObjects 2 }
zxAnSwSwapGlobalObjects OBJECT IDENTIFIER ::= { zxAnSwSwapObjects 1 }
zxAnSwAutoUpdateTraps OBJECT IDENTIFIER ::= { zxAnSwNotifications 1 }
-------------------------------------------------------------------------------
-- 1.Card Running Software Information Table
-------------------------------------------------------------------------------
zxAnSwCardRunningVerTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwCardRunningVerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the card version information."
::= { zxAnCardSwObjects 2 }
zxAnSwCardRunningVerEntry OBJECT-TYPE
SYNTAX ZxAnSwCardRunningVerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnCardTable."
INDEX { zxAnSwCardRack, zxAnSwCardShelf, zxAnSwCardSlot }
::= { zxAnSwCardRunningVerTable 1 }
ZxAnSwCardRunningVerEntry ::= SEQUENCE {
zxAnSwCardRack Integer32,
zxAnSwCardShelf Integer32,
zxAnSwCardSlot Integer32,
zxAnSwCardFileName DisplayString,
zxAnSwCardFileType DisplayString,
zxAnSwCardVersion DisplayString,
zxAnSwCardFileLen Integer32,
zxAnSwCardBuildTime DateAndTime,
zxAnSwCardBootwareFileName DisplayString,
zxAnSwCardBootwareFileType DisplayString,
zxAnSwCardBootwareVersion DisplayString,
zxAnSwCardBootwareFileLen Integer32,
zxAnSwCardBootwareBuildTime DateAndTime,
zxAnSwCardFirmware1FileName DisplayString,
zxAnSwCardFirmware1FileType DisplayString,
zxAnSwCardFirmware1Version DisplayString,
zxAnSwCardFirmware1FileLen Integer32,
zxAnSwCardFirmware1BuildTime DateAndTime,
zxAnSwCardFirmware2FileName DisplayString,
zxAnSwCardFirmware2FileType DisplayString,
zxAnSwCardFirmware2Version DisplayString,
zxAnSwCardFirmware2FileLen Integer32,
zxAnSwCardFirmware2BuildTime DateAndTime,
zxAnSwCardFirmware3FileName DisplayString,
zxAnSwCardFirmware3FileType DisplayString,
zxAnSwCardFirmware3Version DisplayString,
zxAnSwCardFirmware3FileLen Integer32,
zxAnSwCardFirmware3BuildTime DateAndTime
}
zxAnSwCardRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The rack number"
::= { zxAnSwCardRunningVerEntry 1 }
zxAnSwCardShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The shelf number"
::= { zxAnSwCardRunningVerEntry 2 }
zxAnSwCardSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The slot number"
::= { zxAnSwCardRunningVerEntry 3 }
zxAnSwCardFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file name of the card."
::= { zxAnSwCardRunningVerEntry 5 }
zxAnSwCardFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file type of the card."
::= { zxAnSwCardRunningVerEntry 6 }
zxAnSwCardVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag of the card."
::= { zxAnSwCardRunningVerEntry 7 }
zxAnSwCardFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file length of the card."
::= { zxAnSwCardRunningVerEntry 8 }
zxAnSwCardBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardRunningVerEntry 9 }
zxAnSwCardBootwareFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file name of the card."
::= { zxAnSwCardRunningVerEntry 10 }
zxAnSwCardBootwareFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file type of the card."
::= { zxAnSwCardRunningVerEntry 11 }
zxAnSwCardBootwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom tag of the card."
::= { zxAnSwCardRunningVerEntry 12 }
zxAnSwCardBootwareFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file length of the card."
::= { zxAnSwCardRunningVerEntry 13 }
zxAnSwCardBootwareBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardRunningVerEntry 14 }
zxAnSwCardFirmware1FileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file name of the card."
::= { zxAnSwCardRunningVerEntry 15 }
zxAnSwCardFirmware1FileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file type of the card."
::= { zxAnSwCardRunningVerEntry 16 }
zxAnSwCardFirmware1Version OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware tag of the card."
::= { zxAnSwCardRunningVerEntry 17 }
zxAnSwCardFirmware1FileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file length of the card."
::= { zxAnSwCardRunningVerEntry 18 }
zxAnSwCardFirmware1BuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardRunningVerEntry 19 }
zxAnSwCardFirmware2FileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file name of the card."
::= { zxAnSwCardRunningVerEntry 20 }
zxAnSwCardFirmware2FileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file type of the card."
::= { zxAnSwCardRunningVerEntry 21 }
zxAnSwCardFirmware2Version OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware tag of the card."
::= { zxAnSwCardRunningVerEntry 22 }
zxAnSwCardFirmware2FileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file length of the card."
::= { zxAnSwCardRunningVerEntry 23 }
zxAnSwCardFirmware2BuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardRunningVerEntry 24 }
zxAnSwCardFirmware3FileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file name of the card."
::= { zxAnSwCardRunningVerEntry 25 }
zxAnSwCardFirmware3FileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file type of the card."
::= { zxAnSwCardRunningVerEntry 26 }
zxAnSwCardFirmware3Version OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware tag of the card."
::= { zxAnSwCardRunningVerEntry 27 }
zxAnSwCardFirmware3FileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file length of the card."
::= { zxAnSwCardRunningVerEntry 28 }
zxAnSwCardFirmware3BuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardRunningVerEntry 29 }
-------------------------------------------------------------------------------
-- 2. Subcard Running Software Information Table
-------------------------------------------------------------------------------
zxAnSwSubcardRunningVerTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSubcardRunningVerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the sub card version information."
::= { zxAnCardSwObjects 3 }
zxAnSwSubcardRunningVerEntry OBJECT-TYPE
SYNTAX ZxAnSwSubcardRunningVerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwSubcardRunningVerTable."
INDEX { zxAnSwCardRack, zxAnSwCardShelf, zxAnSwCardSlot,
zxAnSwSubcardSlot }
::= { zxAnSwSubcardRunningVerTable 1 }
ZxAnSwSubcardRunningVerEntry ::= SEQUENCE {
zxAnSwSubcardSlot Integer32,
zxAnSwSubcardFileName DisplayString,
zxAnSwSubcardFileType DisplayString,
zxAnSwSubcardVersion DisplayString,
zxAnSwSubcardFileLen Integer32,
zxAnSwSubcardBuildTime DateAndTime,
zxAnSwSubcardBootwareFileName DisplayString,
zxAnSwSubcardBootwareFileType DisplayString,
zxAnSwSubcardBootwareVersion DisplayString,
zxAnSwSubcardBootwareFileLen Integer32,
zxAnSwSubcardBootwareBuildTime DateAndTime,
zxAnSwSubcardFirmwareFileName DisplayString,
zxAnSwSubcardFirmwareFileType DisplayString,
zxAnSwSubcardFirmwareVersion DisplayString,
zxAnSwSubcardFirmwareFileLen Integer32,
zxAnSwSubcardFirmwareBuildTime DateAndTime
}
zxAnSwSubcardSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The slot number of the subcard"
::= { zxAnSwSubcardRunningVerEntry 1 }
zxAnSwSubcardFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file name of the card."
::= { zxAnSwSubcardRunningVerEntry 3 }
zxAnSwSubcardFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file type of the card."
::= { zxAnSwSubcardRunningVerEntry 4 }
zxAnSwSubcardVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag of the card."
::= { zxAnSwSubcardRunningVerEntry 5 }
zxAnSwSubcardFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file length of the card."
::= { zxAnSwSubcardRunningVerEntry 6 }
zxAnSwSubcardBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSubcardRunningVerEntry 7 }
zxAnSwSubcardBootwareFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file name of the card."
::= { zxAnSwSubcardRunningVerEntry 8 }
zxAnSwSubcardBootwareFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file type of the card."
::= { zxAnSwSubcardRunningVerEntry 9 }
zxAnSwSubcardBootwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom tag of the card."
::= { zxAnSwSubcardRunningVerEntry 10 }
zxAnSwSubcardBootwareFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The bootrom file length of the card."
::= { zxAnSwSubcardRunningVerEntry 11 }
zxAnSwSubcardBootwareBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSubcardRunningVerEntry 12 }
zxAnSwSubcardFirmwareFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file name of the card."
::= { zxAnSwSubcardRunningVerEntry 13 }
zxAnSwSubcardFirmwareFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file type of the card."
::= { zxAnSwSubcardRunningVerEntry 14 }
zxAnSwSubcardFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware tag of the card."
::= { zxAnSwSubcardRunningVerEntry 15 }
zxAnSwSubcardFirmwareFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The firmware file length of the card."
::= { zxAnSwSubcardRunningVerEntry 16 }
zxAnSwSubcardFirmwareBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSubcardRunningVerEntry 17 }
-------------------------------------------------------------------------------
-- 3.Saved Software information Table
-------------------------------------------------------------------------------
zxAnSwImageTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the saved version information in
version area MP."
::= { zxAnCardSwObjects 4 }
zxAnSwImageEntry OBJECT-TYPE
SYNTAX ZxAnSwImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwImageTable."
INDEX {zxAnSwCardRack,zxAnSwCardShelf,zxAnSwCardSlot,
zxAnSwImageFileName}
::= { zxAnSwImageTable 1 }
ZxAnSwImageEntry ::= SEQUENCE {
zxAnSwImageFileName DisplayString,
zxAnSwImageFileType DisplayString,
zxAnSwImageVersion DisplayString,
zxAnSwImageFileLen Integer32,
zxAnSwImageBuildTime DateAndTime,
zxAnSwImageActiveStatus INTEGER,
zxAnSwImageDownloadTime DateAndTime
}
zxAnSwImageFileName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION ""
::= { zxAnSwImageEntry 1 }
zxAnSwImageFileType OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file type on the saved area."
::= { zxAnSwImageEntry 2 }
zxAnSwImageVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag on the saved area."
::= { zxAnSwImageEntry 3 }
zxAnSwImageFileLen OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version file length on the saved area."
::= { zxAnSwImageEntry 4 }
zxAnSwImageBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of version build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwImageEntry 5 }
zxAnSwImageActiveStatus OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
inactive(2),
none(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of saved MP version on the saved area.
active(1): active MP version.
inactive(2): inactive MP version.
none(3): NP version, don't have active attribute.
"
::= { zxAnSwImageEntry 6 }
zxAnSwImageDownloadTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The downloading time of the version file."
::= { zxAnSwImageEntry 7 }
-------------------------------------------------------------------------------
-- 4 Software Manual Update Management Table
-------------------------------------------------------------------------------
zxAnSwManualUpdateRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rack number.
The multi-variables binding rule should be complied
with when a manager manual updates software. According
to this rule,all the related mib variables must be
included in one SNMP set operation.
There are two types of variables: mandatory and
optional. All of the mandatory variables must be
included in one SNMP set operation. Optional variables
may be included in one SNMP set operation with the
mandatory variables, but must not be used alone.
To manual update software, the mandatory and optional
variables are as follows:
mandatoty: zxAnSwManualUpdateRack,
zxAnSwManualUpdateShelf,
zxAnSwManualUpdateSlotList,
zxAnSwManualUpdateSwType
optional : none
To manual update subcard software, the mandatory and
optional variables are as follows:
mandatoty: zxAnSwManualUpdateRack,
zxAnSwManualUpdateShelf,
zxAnSwManualUpdateSlotList,
zxAnSwManualUpdateSwType,
zxAnSwManualUpdateSubcardList
optional : none
"
::= { zxAnSwManualUpdateGlobalObjects 1 }
zxAnSwManualUpdateShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The shelf number.
This variable must comply with the multi-variables
binding rule described in zxAnSwManualUpdateRack."
::= { zxAnSwManualUpdateGlobalObjects 2 }
zxAnSwManualUpdateSlotList OBJECT-TYPE
SYNTAX DisplayString (SIZE (0 .. 64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The slot number. updating version file from MP to NP.
They can be updated in batch. For example: '1,2,3'
This variable must comply with the multi-variables
binding rule described in zxAnSwManualUpdateRack."
::= { zxAnSwManualUpdateGlobalObjects 3 }
zxAnSwManualUpdateSwType OBJECT-TYPE
SYNTAX INTEGER {
bootware(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The software type is special to update.
This variable must comply with the multi-variables
binding rule described in zxAnSwManualUpdateRack.
bootware(1): update bootware."
::= { zxAnSwManualUpdateGlobalObjects 4 }
zxAnSwManualUpdateSubcardList OBJECT-TYPE
SYNTAX DisplayString (SIZE (0 .. 64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The subcard number. updating version file from MP to subcard.
They can be updated in batch. For example: '1,2,3'
This variable must comply with the multi-variables
binding rule described in zxAnSwManualUpdateRack.
If zxAnSwManualUpdateSlotList is '1,2' and
zxAnSwManualUpdateSubcardList is '3,4', the actual operation object
like 'slot.subcard' is '1.3', '1.4', '2.3', '2.4'."
::= { zxAnSwManualUpdateGlobalObjects 5 }
-------------------------------------------------------------------------------
-- 5. Software Manual Update Status Table
-------------------------------------------------------------------------------
zxAnSwManualUpdateStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwManualUpdateStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the version updating status
information."
::= { zxAnSwManualUpdateObjects 5 }
zxAnSwManualUpdateStatusEntry OBJECT-TYPE
SYNTAX ZxAnSwManualUpdateStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwManualUpdateStatusTable."
INDEX { zxAnSwCardRack, zxAnSwCardShelf, zxAnSwCardSlot,
zxAnSwManualUpdateSoftwareType }
::= { zxAnSwManualUpdateStatusTable 1 }
ZxAnSwManualUpdateStatusEntry ::= SEQUENCE {
zxAnSwManualUpdateSoftwareType INTEGER,
zxAnSwManualUpdateStatus INTEGER,
zxAnSwManualFailedReason INTEGER
}
zxAnSwManualUpdateSoftwareType OBJECT-TYPE
SYNTAX INTEGER
{
bootware(1)
-- Update bootware.
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The software type when updating version."
::= { zxAnSwManualUpdateStatusEntry 1 }
zxAnSwManualUpdateStatus OBJECT-TYPE
SYNTAX INTEGER {negotiating(1),downloading(2),failed(3),
success(4),sameversion(5)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version status when updating version.
negotiating(1):negotiating not starting
downloading(2):updating from MP
failed(3): update failed
success(4): update successly
sameVersion(5):not need update
"
::= { zxAnSwManualUpdateStatusEntry 2 }
zxAnSwManualFailedReason OBJECT-TYPE
SYNTAX INTEGER
{
noError(1),
-- no error.
noSupportCardHwVersion(2),
-- control card doesn't support the current card hardware
-- version.
mismatchCardHwVersion (3),
-- control card's configuration and the current card
-- hardware version are mismatch.
mismatchCardConfData (4),
-- control card's configuration and the current card
-- configuration data are mismatch.
noSwInNe (5),
-- software for this card doesn't exist in control card.
cardUpdateSwFailed (6)
-- the current card software update failed.
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The reason when updating version failed."
::= { zxAnSwManualUpdateStatusEntry 3 }
-------------------------------------------------------------------------------
-- 6. Subcard Software Manual Update Status Table
-------------------------------------------------------------------------------
zxAnSwSubcardMUpdateStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSubcardMUpdateStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the subcard software updating status
information."
::= { zxAnSwManualUpdateObjects 6 }
zxAnSwSubcardMUpdateStatusEntry OBJECT-TYPE
SYNTAX ZxAnSwSubcardMUpdateStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in zxAnSwSubcardMUpdateStatusTable."
INDEX { zxAnSwCardRack, zxAnSwCardShelf, zxAnSwCardSlot,
zxAnSwSubcardSlot, zxAnSwSubcardMUpdateSoftwareType }
::= { zxAnSwSubcardMUpdateStatusTable 1 }
ZxAnSwSubcardMUpdateStatusEntry ::= SEQUENCE {
zxAnSwSubcardMUpdateSoftwareType INTEGER,
zxAnSwSubcardMUpdateStatus INTEGER,
zxAnSwSubcardMUpdateFailedReason INTEGER
}
zxAnSwSubcardMUpdateSoftwareType OBJECT-TYPE
SYNTAX INTEGER {
bootware(1)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The software type when updating subcard software.
bootware(1): update bootware."
::= { zxAnSwSubcardMUpdateStatusEntry 1 }
zxAnSwSubcardMUpdateStatus OBJECT-TYPE
SYNTAX INTEGER {
negotiating(1),
downloading(2),
failed(3),
success(4),
sameversion(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The updating status when updating subcard software.
negotiating(1): negotiating not starting.
downloading(2): updating from MP.
failed(3): update failed.
success(4): update successfully.
sameVersion(5): not need to update.
"
::= { zxAnSwSubcardMUpdateStatusEntry 2 }
zxAnSwSubcardMUpdateFailedReason OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
noSupportCardHwVersion(2),
mismatchCardHwVersion(3),
mismatchCardConfData(4),
noSwInNe(5),
cardUpdateSwFailed(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason when updating subcard software failed.
noError(1): no error.
noSupportCardHwVersion(2): control card doesn't support the
current card hardware version.
mismatchCardHwVersion(3): control card's configuration and the
current card hardware version are mismatch.
mismatchCardConfData(4): control card's configuration and the
current card configuration data are mismatch.
noSwInNe(5): software for this card doesn't exist in control card.
cardUpdateSwFailed(6): the current card software update failed."
::= { zxAnSwSubcardMUpdateStatusEntry 3 }
-------------------------------------------------------------------------------
-- 7. Software Automatic Update Check Management Table
-------------------------------------------------------------------------------
zxAnSwAutoUpdateChkEnable OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the software periodic check function.
The multi-variables binding rule should be complied with
when a software periodic check. According to this rule,
all the related mib variables must be included in one SNMP
set operation.
There are two types of variables: mandatory and optional.
All of the mandatory variables must be included in one SNMP
set operation. Optional variables may be included in one
SNMP set operation with the mandatory variables, but must
not be used alone.
To configure software periodic check(except disable
software periodic check function), the mandatory and
optional variables are as follows:
mandatoty: zxAnSwAutoUpdateChkEnable,
zxAnSwAutoUpdateChkStartTime,
zxAnSwAutoUpdateChkInterval
optional : none
"
DEFVAL { disable }
::= { zxAnSwAutoUpdateChkObjects 1 }
zxAnSwAutoUpdateChkStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The start time of software periodic check.
For example:yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33).
This variable must comply with the multi-variables binding
rule described in zxAnSwAutoUpdateChkEnable.
"
::= { zxAnSwAutoUpdateChkObjects 2 }
zxAnSwAutoUpdateChkInterval OBJECT-TYPE
SYNTAX Integer32(0..8760)
UNITS "hours"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interval of software periodic check.
Value 0 means unconfigured.
Unit is hour.
This variable must comply with the multi-variables binding
rule described in zxAnSwAutoUpdateChkEnable.
"
DEFVAL { 24 }
::= { zxAnSwAutoUpdateChkObjects 3 }
zxAnSwAutoUpdateCurrChkStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start time of current software periodic check.
For example:yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwAutoUpdateChkObjects 20 }
zxAnSwAutoUpdateChkDifferFiles OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The different files name between NE and file server.
File name is separated by ',', For example:xxx,xxx,xxx."
::= { zxAnSwAutoUpdateChkObjects 21 }
zxAnSwAutoUpdateChkStatus OBJECT-TYPE
SYNTAX INTEGER {
notStarted(1),
inProgress(2),
success(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of software periodic check.
notStarted(1): Automatic update check not start
inProgress(2): Automatic update check in progress
success(3): Automatic update check successful
failed(4): Automatic update check failed
"
::= { zxAnSwAutoUpdateChkObjects 22 }
zxAnSwAutoUpdateChkFailedReason OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
fileServerUnconfigured(2),
fileServerConnectFailed(3),
fileServerLoginFailed(4),
fileServerPathError(5),
fileServerProtocolTypeError(6),
deviceCheckFailed(7),
otherErrors(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The failed reason of software periodic check.
noError(1): Automatic update check successful
or not start
fileServerUnconfigured(2): Automatic update file server
is not configure
fileServerConnectFailed(3): File server connect failed
fileServerLoginFailed(4): File server configure is not
correct
fileServerPathError(5): File server configure path is
not correct
fileServerProtocolTypeError(6): File server configure protocol
type is not correct
deviceCheckFailed(7): NE flash error
otherErrors(255): Error is not include above list
"
::= { zxAnSwAutoUpdateChkObjects 23 }
-------------------------------------------------------------------------------
-- 8. Software Automatic Update Management Table
-------------------------------------------------------------------------------
zxAnSwAutoUpdateAction OBJECT-TYPE
SYNTAX INTEGER{
start(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The automatic update action.
It means to start the automatic update progress."
::= { zxAnSwAutoUpdateOperObjects 1 }
zxAnSwAutoUpdateActiveEnable OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the software active function. Active means to
reset card except control card."
DEFVAL { enable }
::= { zxAnSwAutoUpdateOperObjects 2 }
zxAnSwAutoUpdateSwBackupEnable OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the version file backup function."
DEFVAL { enable }
::= { zxAnSwAutoUpdateOperObjects 3 }
zxAnSwAutoUpdateStatus OBJECT-TYPE
SYNTAX INTEGER{
notStarted(1),
updateStarting(2),
backingUpFile(3),
versionFileAnalyzing(4),
versionFileDownloading(5),
versionFileDownloadComplete(6),
masterSlaveSynchronizing(7),
masterSlaveSyncComplete(8),
versionFileLoading(9),
bootUpdating(10),
bootUpdateComplete(11),
updateSuccess(12),
readyToReboot(13),
sameVersion(14),
updateFailed(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of automatic update.
notStarted(1): Not start
updateStarting(2): Update Start
backingUpFile(3): Backup software before update
versionFileAnalyzing(4): Software analyzing
versionFileDownloading(5): Software downloading
versionFileDownloadComplete(6):Software download completed
masterSlaveSynchronizing(7): Synchronize software to slave board
masterSlaveSyncComplete(8): Synchronize software completed
versionFileLoading(9): Load software to card
bootUpdating(10): Update bootrom
bootUpdateComplete(11): Update bootrom completed
updateSuccess(12): Update successful
readyToReboot(13): Update had beed finished,ready to reboot
sameVersion(14): Update is not need for same version
updateFailed(255): Update failed
"
::= { zxAnSwAutoUpdateOperObjects 20 }
zxAnSwAutoUpdateCurrFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of current file which is updated."
::= { zxAnSwAutoUpdateOperObjects 21 }
zxAnSwAutoUpdateCurrFileSize OBJECT-TYPE
SYNTAX Integer32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of current file which is updated."
::= { zxAnSwAutoUpdateOperObjects 22 }
zxAnSwAutoUpdateCurrFileProgress OBJECT-TYPE
SYNTAX Integer32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The updating progress of current file."
::= { zxAnSwAutoUpdateOperObjects 23 }
zxAnSwAutoUpdateTotalFiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of files will be updated."
::= { zxAnSwAutoUpdateOperObjects 24 }
zxAnSwAutoUpdateSuccessFiles OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of files which are updated successfully."
::= { zxAnSwAutoUpdateOperObjects 25 }
zxAnSwAutoUpdateFailedReason OBJECT-TYPE
SYNTAX INTEGER{
noError(1),
backupDataError(2),
backupLogError(3),
backupConfigurationError(4),
backupVersionFileError(5),
backupOtherError(6),
analyzingConfigurationError(7),
analyzingVersionFileError(8),
diskFull(9),
downloadingVersionFileError(10),
updateVersionFileError(11),
updateBootError(12),
masterSlaveSynchronizeError(13),
updateConflict(14),
unavailableServer(15),
slaveCardNotInService(16),
fileNotExist(17),
otherErrors(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The failed reason of automatic update.
noError(1), Update is not start or successful
backupDataError(2), Backup data failed
backupLogError(3), Backup log failed
backupConfigurationError(4), Backup configuration failed
backupVersionFileError(5), Backup software failed
backupOtherError(6), Backup file failed is not above
list
analyzingConfigurationError(7), Analyze configuration error
analyzingVersionFileError(8), Analyze software error
diskFull(9), NE disk is full
downloadingVersionFileError(10),Download software failed
updateVersionFileError(11), Update software failed
updateBootError(12), Update bootrom failed
masterSlaveSynchronizeError(13),Synchronize software to slave board
failed
updateConflict(14), Other update is executing
unavailableServer(15), File server configure failed
slaveCardNotInService(16), Slave board is not inservice
fileNotExist(17), File not exist on server
otherErrors(255) Other errors is not list above
"
::= { zxAnSwAutoUpdateOperObjects 26 }
-------------------------------------------------------------------------------
-- 9. Software Swap Management Table
-------------------------------------------------------------------------------
zxAnSwSwapRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION " The Rack No. is used for swap version .
The multi-variables binding rule should be complied
with when swap software. According to this rule,
all the related mib variables must be included in one
SNMP set operation.
There are two types of variables: mandatory and optional.
All of the mandatory variables must be included in one
SNMP set operation. Optional variables may be included
in one SNMP set operation with the mandatory variables,
but must not be used alone.
To swap software, the mandatory and optional variables
are as follows:
mandatoty:zxAnSwSwapRack, zxAnSwSwapShelf, zxAnSwSwapSlot
optional :none
"
::= { zxAnSwSwapGlobalObjects 1 }
zxAnSwSwapShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION " The Shelf number is used for swap version.
This variable must comply with the multi-variables
binding rule described in zxAnSwSwapRack.
"
::= { zxAnSwSwapGlobalObjects 2 }
zxAnSwSwapSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION " The slot number is used for swap version.
This variable must comply with the multi-variables
binding rule described in zxAnSwSwapRack.
"
::= { zxAnSwSwapGlobalObjects 3 }
------------------------------------------------------------------------------
-- 10. Saved Patch Information Table
------------------------------------------------------------------------------
zxAnSwSavedPatchTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSavedPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the saved patch information."
::= { zxAnCardPatchObjects 2 }
zxAnSwSavedPatchEntry OBJECT-TYPE
SYNTAX ZxAnSwSavedPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwSavedPatchTable."
INDEX { zxAnSwPatchRack,zxAnSwPatchShelf,
zxAnSwPatchSlot,zxAnSwPatchName }
::= { zxAnSwSavedPatchTable 1 }
ZxAnSwSavedPatchEntry ::= SEQUENCE {
zxAnSwPatchRack Integer32,
zxAnSwPatchShelf Integer32,
zxAnSwPatchSlot Integer32,
zxAnSwPatchName DisplayString,
zxAnSwPatchOwnerSwVersion DisplayString,
zxAnSwPatchVersion DisplayString,
zxAnSwPatchSize Integer32,
zxAnSwPatchBuildTime DateAndTime,
zxAnSwPatchConfActiveStatus INTEGER,
zxAnSwPatchDescription DisplayString
}
zxAnSwPatchRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The rack number."
::= { zxAnSwSavedPatchEntry 1 }
zxAnSwPatchShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The shelf number."
::= { zxAnSwSavedPatchEntry 2 }
zxAnSwPatchSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The slot number."
::= { zxAnSwSavedPatchEntry 3 }
zxAnSwPatchName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The patch file name."
::= { zxAnSwSavedPatchEntry 4 }
zxAnSwPatchOwnerSwVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The software version of the patch belonging to."
::= { zxAnSwSavedPatchEntry 5 }
zxAnSwPatchVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag of the patch."
::= { zxAnSwSavedPatchEntry 6 }
zxAnSwPatchSize OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch file length."
::= { zxAnSwSavedPatchEntry 7 }
zxAnSwPatchBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of patch build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSavedPatchEntry 8 }
zxAnSwPatchConfActiveStatus OBJECT-TYPE
SYNTAX INTEGER{
activated(1),
deactivated(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The configured active status of the patch file.
activated -- to activate the patch file.
deactivated -- to deactivate the patch file."
DEFVAL { deactivated }
::= { zxAnSwSavedPatchEntry 9 }
zxAnSwPatchDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch description."
::= { zxAnSwSavedPatchEntry 10 }
------------------------------------------------------------------------------
-- 11. Card Patch Running Status Information Table
------------------------------------------------------------------------------
zxAnSwCardPatchRunStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwCardPatchRunStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the patch running status information of the
card."
::= { zxAnCardPatchObjects 3 }
zxAnSwCardPatchRunStatusEntry OBJECT-TYPE
SYNTAX ZxAnSwCardPatchRunStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwCardPatchRunStatusTable."
INDEX
{ zxAnSwPatchRack,
zxAnSwPatchShelf,
zxAnSwPatchSlot,
zxAnSwCardPatchName }
::= { zxAnSwCardPatchRunStatusTable 1 }
ZxAnSwCardPatchRunStatusEntry ::= SEQUENCE {
zxAnSwCardPatchName DisplayString,
zxAnSwCardPatchOwnerSwVersion DisplayString,
zxAnSwCardPatchVersion DisplayString,
zxAnSwCardPatchSize Integer32,
zxAnSwCardPatchBuildTime DateAndTime,
zxAnSwCardPatchActivatedTime DateAndTime,
zxAnSwCardPatchDescription DisplayString,
zxAnSwCardPatchRunningStatus INTEGER
}
zxAnSwCardPatchName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The patch file name of the card."
::= { zxAnSwCardPatchRunStatusEntry 1 }
zxAnSwCardPatchOwnerSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The software version of the patch belonging to."
::= { zxAnSwCardPatchRunStatusEntry 2 }
zxAnSwCardPatchVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag of the patch."
::= { zxAnSwCardPatchRunStatusEntry 3 }
zxAnSwCardPatchSize OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch file length."
::= { zxAnSwCardPatchRunStatusEntry 4 }
zxAnSwCardPatchBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of patch build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardPatchRunStatusEntry 5 }
zxAnSwCardPatchActivatedTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of the patch activated. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwCardPatchRunStatusEntry 6 }
zxAnSwCardPatchDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch description."
::= { zxAnSwCardPatchRunStatusEntry 7 }
zxAnSwCardPatchRunningStatus OBJECT-TYPE
SYNTAX INTEGER{
activatingSucceeded(1),
activatingFailed(2),
waitingToBeActivated(3),
resettingCardNeeded(4),
mismatched(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The patch running status.
activatingSucceeded(1) : value 1 means the activating operation
of the patch file is succeeded.
activatingFailed(2) : value 2 means the activating operation
of the patch file is failed.
waitingToBeActivated(3): value 3 means the patch file is waiting
to be activated.
resettingCardNeeded(4) : value 4 means the patch file has been
successfully activated and the card
needs to be reset.
mismatched(5) : value 5 means the version of the patch
file is not matched with the version of
the card software."
::= { zxAnSwCardPatchRunStatusEntry 8 }
------------------------------------------------------------------------------
-- 12. Subcard Running Patch Information Table
------------------------------------------------------------------------------
zxAnSwSubcardRunningPatchTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSubcardRunningPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table includes the subcard patch information."
::= { zxAnCardPatchObjects 4 }
zxAnSwSubcardRunningPatchEntry OBJECT-TYPE
SYNTAX ZxAnSwSubcardRunningPatchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in zxAnSwSubcardRunningPatchTable."
INDEX { zxAnSwPatchRack,zxAnSwPatchShelf,
zxAnSwPatchSlot,zxAnSwPatchSubcardSlot,
zxAnSwSubcardPatchName }
::= { zxAnSwSubcardRunningPatchTable 1 }
ZxAnSwSubcardRunningPatchEntry ::= SEQUENCE {
zxAnSwPatchSubcardSlot Integer32,
zxAnSwSubcardPatchName DisplayString,
zxAnSwSubcardPatchOwnerSwVersion DisplayString,
zxAnSwSubcardPatchVersion DisplayString,
zxAnSwSubcardPatchSize Integer32,
zxAnSwSubcardPatchBuildTime DateAndTime,
zxAnSwSubcardPatchActivatedTime DateAndTime,
zxAnSwSubcardPatchDescription DisplayString
}
zxAnSwPatchSubcardSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The slot number of the subcard."
::= { zxAnSwSubcardRunningPatchEntry 1 }
zxAnSwSubcardPatchName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The file name of the patch "
::= { zxAnSwSubcardRunningPatchEntry 2 }
zxAnSwSubcardPatchOwnerSwVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The software version of the patch belonging to."
::= { zxAnSwSubcardRunningPatchEntry 3 }
zxAnSwSubcardPatchVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 64 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version tag of the patch."
::= { zxAnSwSubcardRunningPatchEntry 4 }
zxAnSwSubcardPatchSize OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch file length."
::= { zxAnSwSubcardRunningPatchEntry 5 }
zxAnSwSubcardPatchBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of patch build. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSubcardRunningPatchEntry 6 }
zxAnSwSubcardPatchActivatedTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of the patch activated. For example:
yyyy-mm-dd HH:MM:SS.(2001-01-01 02:22:33)."
::= { zxAnSwSubcardRunningPatchEntry 7 }
zxAnSwSubcardPatchDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The patch description."
::= { zxAnSwSubcardRunningPatchEntry 8 }
------------------------------------------------------------------------------
-- 13. Saved Patch Package information Table
------------------------------------------------------------------------------
zxAnSwSavedPatchPackageTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSavedPatchPackageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the saved patch package information."
::= { zxAnCardPatchObjects 5 }
zxAnSwSavedPatchPackageEntry OBJECT-TYPE
SYNTAX ZxAnSwSavedPatchPackageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in zxAnSwSavedPatchPackageTable."
INDEX
{ zxAnSwPatchRack,
zxAnSwPatchShelf,
zxAnSwPatchSlot,
zxAnSwPatchPkgName }
::= { zxAnSwSavedPatchPackageTable 1 }
ZxAnSwSavedPatchPackageEntry ::= SEQUENCE {
zxAnSwPatchPkgName DisplayString,
zxAnSwPatchPkgVersion DisplayString,
zxAnSwPatchPkgSize Integer32,
zxAnSwPatchPkgBuildTime DateAndTime,
zxAnSwPatchPkgDescription DisplayString,
zxAnSwPatchPkgConfActiveStatus INTEGER,
zxAnSwPatchPkgActualActiveStatus INTEGER
}
zxAnSwPatchPkgName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The name of the patch package."
::= { zxAnSwSavedPatchPackageEntry 1 }
zxAnSwPatchPkgVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version of the patch package."
::= { zxAnSwSavedPatchPackageEntry 2 }
zxAnSwPatchPkgSize OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The size of the patch package."
::= { zxAnSwSavedPatchPackageEntry 3 }
zxAnSwPatchPkgBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The build time of patch package."
::= { zxAnSwSavedPatchPackageEntry 4 }
zxAnSwPatchPkgDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The description of the patch package."
::= { zxAnSwSavedPatchPackageEntry 5 }
zxAnSwPatchPkgConfActiveStatus OBJECT-TYPE
SYNTAX INTEGER{
activated(1),
deactivated(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured active status of the patch package.
activated(1) : value 1 means the configured active status of
the patch package is activated.
deactivated(2) : value 2 means the configured active status of
the patch package is deactivated."
DEFVAL { deactivated }
::= { zxAnSwSavedPatchPackageEntry 6 }
zxAnSwPatchPkgActualActiveStatus OBJECT-TYPE
SYNTAX INTEGER{
activated(1),
deactivated(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual active status of the patch package.
activated(1) : value 1 means the patch package is activated.
deactivated(2) : value 2 means the patch package is deactivated."
::= { zxAnSwSavedPatchPackageEntry 7 }
------------------------------------------------------------------------------
-- 14. Saved Patch Package File Information Table
------------------------------------------------------------------------------
zxAnSwSavedPatchPackageFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnSwSavedPatchPackageFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the information of the file inside the patch
package."
::= { zxAnCardPatchObjects 6 }
zxAnSwSavedPatchPackageFileEntry OBJECT-TYPE
SYNTAX ZxAnSwSavedPatchPackageFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in zxAnSwSavedPatchPackageFileTable."
INDEX
{ zxAnSwPatchRack,
zxAnSwPatchShelf,
zxAnSwPatchSlot,
zxAnSwPatchPkgName,
zxAnSwPatchPkgFileName }
::= { zxAnSwSavedPatchPackageFileTable 1 }
ZxAnSwSavedPatchPackageFileEntry ::= SEQUENCE {
zxAnSwPatchPkgFileName DisplayString,
zxAnSwPatchPkgFileBuildTime DateAndTime,
zxAnSwPatchPkgFileNeedResetCard INTEGER,
zxAnSwPatchPkgFileActiveStatus INTEGER
}
zxAnSwPatchPkgFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the file inside the patch package."
::= { zxAnSwSavedPatchPackageFileEntry 1 }
zxAnSwPatchPkgFileBuildTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The build time of the file inside the patch package."
::= { zxAnSwSavedPatchPackageFileEntry 2 }
zxAnSwPatchPkgFileNeedResetCard OBJECT-TYPE
SYNTAX INTEGER{
yes(1),
no(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the card needs to be reset.
yes(1) : value 1 means need to reset the card.
no(2) : value 2 means no need to reset the card."
::= { zxAnSwSavedPatchPackageFileEntry 3 }
zxAnSwPatchPkgFileActiveStatus OBJECT-TYPE
SYNTAX INTEGER{
activated(1),
deactivated(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The patch file active status.
activated(1) : value 1 means the patch file is activated.
deactivated(2) : value 2 means the patch file is deactivated."
::= { zxAnSwSavedPatchPackageFileEntry 4 }
-------------------------------------------------------------------------------
-- 21 Software Notification
-------------------------------------------------------------------------------
zxAnSwAutoUpdateFinished NOTIFICATION-TYPE
OBJECTS { zxAnSwAutoUpdateStatus,zxAnSwAutoUpdateFailedReason }
STATUS current
DESCRIPTION
"A zxAnSwAutoUpdateFinished is sent when the agent has detected
that the automatic update is finished."
::= { zxAnSwAutoUpdateTraps 1 }
zxAnSwAutoUpdateSwDiffer NOTIFICATION-TYPE
OBJECTS { zxAnSwAutoUpdateCurrChkStartTime,
zxAnSwAutoUpdateChkDifferFiles }
STATUS current
DESCRIPTION
"A zxAnSwAutoUpdateSwDiffer is sent when the agent has
detected different version files between NE and file server."
::= { zxAnSwAutoUpdateTraps 2 }
zxAnSwAutoUpdateSwChkFailed NOTIFICATION-TYPE
OBJECTS { zxAnSwAutoUpdateCurrChkStartTime,
zxAnSwAutoUpdateChkFailedReason }
STATUS current
DESCRIPTION
"A zxAnSwAutoUpdateSwChkFailed is sent when the agent has
detected that version check is failed."
::= { zxAnSwAutoUpdateTraps 3 }
-------------------------------------------------------------------------------
-- 31. Software Conformance
-------------------------------------------------------------------------------
zxAnSwConformance OBJECT IDENTIFIER ::= { zxAnSoftwareMib 4 }
zxAnSwCompliances OBJECT IDENTIFIER ::= { zxAnSwConformance 1 }
zxAnSwGroups OBJECT IDENTIFIER ::= { zxAnSwConformance 2 }
zxAnSwCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement the
ZTE-AN-SOFTWARE-MIB."
MODULE -- this module
MANDATORY-GROUPS {
zxAnSwCardRunVerGroup,
zxAnSwSubcardRunVerGroup,
zxAnSwImageGroup,
zxAnSwManualUpdateGroup,
zxAnSwManualUpdateStatusGroup,
zxAnSwAutoUpdateChkGroup,
zxAnSwAutoUpdateOperGroup,
zxAnSwSwapGroup,
zxAnSwNotificationsGroup
}
::= { zxAnSwCompliances 1 }
zxAnSwCardRunVerGroup OBJECT-GROUP
OBJECTS {
zxAnSwCardFileName, zxAnSwCardFileType, zxAnSwCardVersion,
zxAnSwCardFileLen, zxAnSwCardBuildTime,
zxAnSwCardBootwareFileName, zxAnSwCardBootwareFileType,
zxAnSwCardBootwareVersion, zxAnSwCardBootwareFileLen,
zxAnSwCardBootwareBuildTime, zxAnSwCardFirmware1FileName,
zxAnSwCardFirmware1FileType, zxAnSwCardFirmware1Version,
zxAnSwCardFirmware1FileLen, zxAnSwCardFirmware1BuildTime,
zxAnSwCardFirmware2FileName, zxAnSwCardFirmware2FileType,
zxAnSwCardFirmware2Version, zxAnSwCardFirmware2FileLen,
zxAnSwCardFirmware2BuildTime, zxAnSwCardFirmware3FileName,
zxAnSwCardFirmware3FileType, zxAnSwCardFirmware3Version,
zxAnSwCardFirmware3FileLen, zxAnSwCardFirmware3BuildTime
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent chassis
version information, include card running version information."
::= { zxAnSwGroups 1 }
zxAnSwSubcardRunVerGroup OBJECT-GROUP
OBJECTS {zxAnSwSubcardFileName,
zxAnSwSubcardFileType, zxAnSwSubcardVersion,
zxAnSwSubcardFileLen, zxAnSwSubcardBuildTime,
zxAnSwSubcardBootwareFileName, zxAnSwSubcardBootwareFileType,
zxAnSwSubcardBootwareVersion, zxAnSwSubcardBootwareFileLen,
zxAnSwSubcardBootwareBuildTime, zxAnSwSubcardFirmwareFileName,
zxAnSwSubcardFirmwareFileType, zxAnSwSubcardFirmwareVersion,
zxAnSwSubcardFirmwareFileLen, zxAnSwSubcardFirmwareBuildTime
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent chassis
version information, include subcard running version information."
::= { zxAnSwGroups 2 }
zxAnSwImageGroup OBJECT-GROUP
OBJECTS {zxAnSwImageFileType, zxAnSwImageVersion, zxAnSwImageFileLen,
zxAnSwImageBuildTime, zxAnSwImageActiveStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent chassis
version information, include card saved version information."
::= { zxAnSwGroups 3 }
zxAnSwManualUpdateGroup OBJECT-GROUP
OBJECTS {zxAnSwManualUpdateRack, zxAnSwManualUpdateShelf,
zxAnSwManualUpdateSlotList, zxAnSwManualUpdateSwType
}
STATUS current
DESCRIPTION
"The collection of objects which are used to update software by
manual."
::= { zxAnSwGroups 4 }
zxAnSwManualUpdateStatusGroup OBJECT-GROUP
OBJECTS {zxAnSwManualUpdateStatus, zxAnSwManualFailedReason
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent chassis
software update status."
::= { zxAnSwGroups 5 }
zxAnSwAutoUpdateChkGroup OBJECT-GROUP
OBJECTS { zxAnSwAutoUpdateChkEnable, zxAnSwAutoUpdateChkStartTime,
zxAnSwAutoUpdateChkInterval,
zxAnSwAutoUpdateCurrChkStartTime,
zxAnSwAutoUpdateChkDifferFiles, zxAnSwAutoUpdateChkStatus,
zxAnSwAutoUpdateChkFailedReason
}
STATUS current
DESCRIPTION
"The collection of objects which are used to management version
automatic updating.
Automatic version check to list the different files name between
NE and file server."
::= { zxAnSwGroups 6 }
zxAnSwAutoUpdateOperGroup OBJECT-GROUP
OBJECTS { zxAnSwAutoUpdateAction, zxAnSwAutoUpdateActiveEnable,
zxAnSwAutoUpdateSwBackupEnable, zxAnSwAutoUpdateStatus,
zxAnSwAutoUpdateCurrFileName, zxAnSwAutoUpdateCurrFileSize,
zxAnSwAutoUpdateCurrFileProgress, zxAnSwAutoUpdateTotalFiles,
zxAnSwAutoUpdateSuccessFiles, zxAnSwAutoUpdateFailedReason
}
STATUS current
DESCRIPTION
"The collection of objects which are used to management version
automatic updating.
Automatic version update to download version from file server and
to take effect."
::= { zxAnSwGroups 7 }
zxAnSwSwapGroup OBJECT-GROUP
OBJECTS { zxAnSwSwapRack, zxAnSwSwapShelf, zxAnSwSwapSlot
}
STATUS current
DESCRIPTION
"The collection of objects which are used to swap version ."
::= { zxAnSwGroups 8 }
zxAnSwNotificationsGroup OBJECT-GROUP
OBJECTS { zxAnSwAutoUpdateFinished, zxAnSwAutoUpdateSwDiffer,
zxAnSwAutoUpdateSwChkFailed
}
STATUS current
DESCRIPTION
"The notifications which indicate specific changes,
include automatic update check,automatic update status."
::= { zxAnSwGroups 9 }
END
|