summaryrefslogtreecommitdiff
path: root/MIBS/adva/ADVA-FSPR7-MODULE-ENCRYPTION-MIB
blob: d751b6e3a768e9510b9ce64ff1cfa9d3abe5247b (plain)
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
--  ***************************************************************************
--  ADVA-FSPR7-MODULE-ENCRYPTION-MIB.txt
--
--               ADVA AG Optical Networking Module Encryption MIB File
--
--  Copyright 2011 ADVA AG Optical Networking.
--
--  All rights reserved.
--  ***************************************************************************


--  MIB definitions required for Module Encryption management.

ADVA-FSPR7-MODULE-ENCRYPTION-MIB DEFINITIONS ::= BEGIN 

IMPORTS



    TEXTUAL-CONVENTION,
    DateAndTime,
    TruthValue
                FROM SNMPv2-TC


    MODULE-COMPLIANCE,
    OBJECT-GROUP
                FROM SNMPv2-CONF


    MODULE-IDENTITY,
    OBJECT-TYPE,
    Integer32,
    Unsigned32
                FROM SNMPv2-SMI


    SnmpAdminString
                FROM SNMP-FRAMEWORK-MIB


    fspR7,
    EntityIndex,
    entityIndex
                FROM ADVA-MIB


    entityEqptShelfNo,
    entityEqptSlotNo,
    entityEqptPortNo,
    entityEqptExtNo,
    entityEqptClassName,
    entityFacilityShelfNo,
    entityFacilitySlotNo,
    entityFacilityPortNo,
    entityFacilityExtNo,
    entityFacilityClassName
                FROM ADVA-FSPR7-MIB


    FspR7RequestErrorType,
    FspR7RequestErrorTypeAes,
    FspR7RlsAction,
    FspR7RlsActionCaps,
    FspR7SnmpHexString,
    FspR7Unsigned32Caps
                FROM ADVA-FSPR7-TC-MIB;

moduleEncryptionMIB MODULE-IDENTITY

    LAST-UPDATED "201805280000Z"

    ORGANIZATION "ADVA Optical Networking"

    CONTACT-INFO "EMEA Support
                  Phone : +49 89 89 0665 848
                  Fax   : +49 89 89 0665 22848
                  Email : support@advaoptical.com

                  North American Support
                  Phone : 886 442 ADVA (2382) (toll-free within the US, Canada and Mexico)
                  Fax   : + 1 806 741 8529 (elsewhere)
                  Email : support-usa@advaoptical.com

                  Asia Pacific Support
                  Phone : + 1 866 442 2382 (other toll-free numbers available in some countries)
                  Email : support-asia@advaoptical.com"

    DESCRIPTION   "This is a MIB definition for ADVA AG Optical Networking module encryption management."

    REVISION        "201805280000Z"
    DESCRIPTION     "FSP3000 F7 Release 17.2.2 MIB."

    REVISION        "201804170000Z"
    DESCRIPTION     "FSP3000 F7 Release 17.2.1 MIB."

    REVISION        "201803150000Z"
    DESCRIPTION     "FSP3000 F7 Release 17.1.2 MIB."

    REVISION        "201712070000Z"
    DESCRIPTION     "FSP3000 F7 Release 17.1.1 MIB."

    REVISION        "201604010000Z"
    DESCRIPTION     "FSP3000 F7 Release 16.1.1 MIB."

    REVISION        "201512100000Z"
    DESCRIPTION     "FSP3000 F7 Release 15.2.1 MIB."

    REVISION        "201308200000Z"
    DESCRIPTION     "FSP3000 F7 Release 12.1.1 MIB."

    REVISION        "201102160000Z"
    DESCRIPTION     "FSP3000 F7 Release 10.3.1 MIB."
    ::= { fspR7 5 }

encryptionMIB
    OBJECT IDENTIFIER ::= { moduleEncryptionMIB 1 }

moduleEncryptionObjects
    OBJECT IDENTIFIER ::= { encryptionMIB 2 }

portEncryptionObjects
    OBJECT IDENTIFIER ::= { encryptionMIB 3 }

encryptionPerformanceMonitoring
    OBJECT IDENTIFIER ::= { encryptionMIB 4 }

encryptionDiagnostics
    OBJECT IDENTIFIER ::= { encryptionMIB 5 }

CryptoFspR7CryBoot ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Encryption Restart"
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            warmStart(2),
            warmStartFwp(3),
            coldStart(4),
            coldStartFwp(5)
        }

CryptoFspR7CryBootCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Encryption Restart"
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capWarmStart(2),
            capWarmStartFwp(3),
            capColdStart(4),
            capColdStartFwp(5)
        }

CryptoFspR7EnableDisable ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enable/Disable variable."
  SYNTAX    INTEGER
        {
            undefined(0),
            enable(1),
            disable(2)
        }

CryptoFspR7EnableDisableCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enable/Disable variable."
  SYNTAX    BITS
        {
            capUndefined(0),
            capEnable(1),
            capDisable(2)
        }

CryptoFspR7EncryptionCommunication ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Embedded Communication Channel used to support Encryption"
  SYNTAX    INTEGER
        {
            undefined(0),
            tcm1(1),
            tcm2(2),
            tcm3(3),
            tcm4(4),
            tcm5(5),
            tcm6(6),
            gcc0(7),
            gcc1(8),
            gcc2(9),
            gcc1gcc2(10),
            res1(11), --ODU OH row 4 column 9 - 12
            res2(12), --ODU OH row 4 column 11 - 14
            tcm1tcm2(13),
            tcm2tcm3(14),
            tcm3tcm4(15),
            tcm4tcm5(16),
            tcm5tcm6(17),
            none(18)
        }

CryptoFspR7EncryptionCommunicationCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Embedded Communication Channel used to support Encryption"
  SYNTAX    BITS
        {
            capUndefined(0),
            capTcm1(1),
            capTcm2(2),
            capTcm3(3),
            capTcm4(4),
            capTcm5(5),
            capTcm6(6),
            capGcc0(7),
            capGcc1(8),
            capGcc2(9),
            capGcc1gcc2(10),
            capRes1(11),
            capRes2(12),
            capTcm1tcm2(13),
            capTcm2tcm3(14),
            capTcm3tcm4(15),
            capTcm4tcm5(16),
            capTcm5tcm6(17),
            capNone(18)
        }

CryptoFspR7EncryptionReset ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for module 'reset to factory' operation. The rls(1) value
        means that 'reset to factory' is not happening. Choosing the rtf(2) value executes the
        'reset to factory' operation immediately."
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            rtf(2) --Manual reset,  All passwords are cleared
        }

CryptoFspR7EncryptionResetCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for module 'reset to factory' operation. The rls(1) value
        means that 'reset to factory' is not happening. Choosing the rtf(2) value executes the
        'reset to factory' operation immediately."
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capRtf(2)
        }

CryptoFspR7EncryptionSwitch ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for disabling the encrypted mode."
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            oprCryptoOff(2)
        }

CryptoFspR7EncryptionSwitchCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for disabling the encrypted mode."
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capOprCryptoOff(2)
        }

CryptoFspR7ForceKeyExchange ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for forcing the key exchange process between
        encryption-capable modules. Successful process startup does not mean that
        whole operation succeeded."
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            oprKeyExchg(2)
        }

CryptoFspR7ForceKeyExchangeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for forcing the key exchange process between
        encryption-capable modules. Successful process startup does not mean that
        whole operation succeeded."
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capOprKeyExchg(2)
        }

CryptoFspR7KeyExchangeForcedClear ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for reseting the key exchange failure status."
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            reset(2)
        }

CryptoFspR7KeyExchangeForcedClearCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention for reseting the key exchange failure status."
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capReset(2)
        }

CryptoFspR7SelfTestOperation ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Encryption selftest"
  SYNTAX    INTEGER
        {
            undefined(0),
            rls(1),
            oprSelfTest(2)
        }

CryptoFspR7SelfTestOperationCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Encryption selftest"
  SYNTAX    BITS
        {
            capUndefined(0),
            capRls(1),
            capOprSelfTest(2)
        }

CryptoFspR7SessionKeyLifetime ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention presenting available key lifetime periods for an encrypted sessions."
  SYNTAX    INTEGER
        {
            undefined(0),
            lifetime30min(1),
            lifetime1h(2),
            lifetime2h(3),
            lifetime3h(4),
            lifetime6h(5),
            lifetime12h(6),
            lifetime1d(7),
            lifetime2d(8),
            lifetime3d(9),
            lifetime1w(10),
            lifetime2w(11),
            lifetime3w(12),
            lifetimeMax(13),
            lifetime330min(14),
            lifetime11h(15)
        }

CryptoFspR7SessionKeyLifetimeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Textual-Convention presenting available key lifetime periods for an encrypted sessions."
  SYNTAX    BITS
        {
            capUndefined(0),
            capLifetime30min(1),
            capLifetime1h(2),
            capLifetime2h(3),
            capLifetime3h(4),
            capLifetime6h(5),
            capLifetime12h(6),
            capLifetime1d(7),
            capLifetime2d(8),
            capLifetime3d(9),
            capLifetime1w(10),
            capLifetime2w(11),
            capLifetime3w(12),
            capLifetimeMax(13),
            capLifetime330min(14),
            capLifetime11h(15)
        }


--    mib-oriented scalars

cryptoOfficerPassword OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "This object must be present in every set-request regarding encryption functionality."
    ::= { moduleEncryptionObjects 1 }

cryptoOfficerPasswordError OBJECT-TYPE
    SYNTAX            INTEGER
        {
            undefined(0),
            passwdOk(1),
            passwdInvalid(2),
            passwdRejected(3),
            passwdNotInit(4),
            passwdTooSimple(5),
            passwdValidationAborted(6),
            none(7)
        }

    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Last error related to set-request perform on that table."
    ::= { moduleEncryptionObjects 2 }

cryptoOfficerPasswordReqId OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Set-Request id for which cryptoOfficerPasswordError contains value."
    ::= { moduleEncryptionObjects 3 }


--    module encryption configuration

cryptoModuleConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoModuleConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related writeable parameters defined per module."
    ::= { moduleEncryptionObjects 10 }

cryptoModuleConfigEntry OBJECT-TYPE
    SYNTAX        CryptoModuleConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable module."
    INDEX       {
                  cryptoModuleConfigIndex
                }
    ::= { cryptoModuleConfigTable 1 }

CryptoModuleConfigEntry ::= SEQUENCE
  {    cryptoModuleConfigIndex EntityIndex,
    cryptoModuleConfigCryptoOfficerPassword SnmpAdminString,
    cryptoModuleConfigResetToFactory CryptoFspR7EncryptionReset,
    cryptoModuleConfigFirmwareUpdateState CryptoFspR7EnableDisable,
    cryptoModuleConfigFirmwareVersion SnmpAdminString,
    cryptoModuleConfigSelfTestOperation CryptoFspR7SelfTestOperation }

cryptoModuleConfigIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Address of an encryption capable module."
    ::= { cryptoModuleConfigEntry 1 }

cryptoModuleConfigCryptoOfficerPassword OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The current Crypto Officer password. It may be only modified, but cannot be read. Read attempt
        of this object will result with noSuchName error."
    ::= { cryptoModuleConfigEntry 2 }

cryptoModuleConfigResetToFactory OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionReset
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Executes 'reset to factory' action."
    ::= { cryptoModuleConfigEntry 3 }

cryptoModuleConfigFirmwareUpdateState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Determines if it is allowed for a module to perform firmware upgrade."
    ::= { cryptoModuleConfigEntry 4 }

cryptoModuleConfigFirmwareVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Firmware package version designated for an upgrade."
    ::= { cryptoModuleConfigEntry 5 }

cryptoModuleConfigSelfTestOperation OBJECT-TYPE
    SYNTAX        CryptoFspR7SelfTestOperation
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Starts self-tests."
    ::= { cryptoModuleConfigEntry 6 }


--    module encryption monitoring

cryptoModuleStatusTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoModuleStatusEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related readable parameters defined per module."
    ::= { moduleEncryptionObjects 11 }

cryptoModuleStatusEntry OBJECT-TYPE
    SYNTAX        CryptoModuleStatusEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable module."
    INDEX       {
                  cryptoModuleConfigIndex
                }
    ::= { cryptoModuleStatusTable 1 }

CryptoModuleStatusEntry ::= SEQUENCE
  {    cryptoModuleStatusIndex EntityIndex,
    cryptoModuleStatusFailureLoginCount Unsigned32,
    cryptoModuleStatusSuccessfulLoginDateAndTime DateAndTime,
    cryptoModuleStatusUnsuccessfulLoginDateAndTime DateAndTime,
    cryptoModuleStatusResetToFactoryCapability CryptoFspR7EnableDisable }

cryptoModuleStatusIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Address of an encryption capable module."
    ::= { cryptoModuleStatusEntry 1 }

cryptoModuleStatusFailureLoginCount OBJECT-TYPE
    SYNTAX        Unsigned32 (0..3 | 4294967295)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of unsuccessful Crypto Officer log-in attempts."
    ::= { cryptoModuleStatusEntry 2 }

cryptoModuleStatusSuccessfulLoginDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a last successful Crypto Officer login."
    ::= { cryptoModuleStatusEntry 3 }

cryptoModuleStatusUnsuccessfulLoginDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a last unsuccessful Crypto Officer login."
    ::= { cryptoModuleStatusEntry 4 }

cryptoModuleStatusResetToFactoryCapability OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The status of possibility to perform Reset To Factory operation. If disable(2) then
        cryptoModuleConfigResetToFactory cannot be used, otherwise operation will fail."
    ::= { cryptoModuleStatusEntry 5 }


--    five index scheme module encryption 

cryptoModuleTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoModuleEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related parameters defined per module."
    ::= { moduleEncryptionObjects 20 }

cryptoModuleEntry OBJECT-TYPE
    SYNTAX        CryptoModuleEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable module."
    INDEX       {
                  entityEqptShelfNo,
                  entityEqptSlotNo,
                  entityEqptPortNo,
                  entityEqptExtNo,
                  entityEqptClassName
                }
    ::= { cryptoModuleTable 1 }

CryptoModuleEntry ::= SEQUENCE
  {    cryptoModuleCryptoOfficerPassword SnmpAdminString,
    cryptoModuleResetToFactory CryptoFspR7EncryptionReset,
    cryptoModuleFirmwareUpdateState CryptoFspR7EnableDisable,
    cryptoModuleFirmwareVersion SnmpAdminString,
    cryptoModuleSelfTestOperation CryptoFspR7SelfTestOperation,
    cryptoModuleFailureLoginCount Unsigned32,
    cryptoModuleSuccessfulLoginDateAndTime DateAndTime,
    cryptoModuleUnsuccessfulLoginDateAndTime DateAndTime,
    cryptoModuleFwpHash FspR7SnmpHexString,
    cryptoModuleCryBoot CryptoFspR7CryBoot,
    cryptoModuleStbyFwpHash FspR7SnmpHexString,
    cryptoModuleSelfTestExecute Unsigned32,
    cryptoModuleSelfTestResult Unsigned32 }

cryptoModuleCryptoOfficerPassword OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The current Crypto Officer password. It may be only modified, but cannot be read. Read attempt
        of this object will result with noSuchName error."
    ::= { cryptoModuleEntry 1 }

cryptoModuleResetToFactory OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionReset
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Executes 'reset to factory' action."
    ::= { cryptoModuleEntry 2 }

cryptoModuleFirmwareUpdateState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Determines if it is allowed for a module to perform firmware upgrade."
    ::= { cryptoModuleEntry 3 }

cryptoModuleFirmwareVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Firmware package version designated for an upgrade."
    ::= { cryptoModuleEntry 4 }

cryptoModuleSelfTestOperation OBJECT-TYPE
    SYNTAX        CryptoFspR7SelfTestOperation
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Starts self-tests."
    ::= { cryptoModuleEntry 5 }

cryptoModuleFailureLoginCount OBJECT-TYPE
    SYNTAX        Unsigned32 (0..3 | 4294967295)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of unsuccessful Crypto Officer log-in attempts."
    ::= { cryptoModuleEntry 6 }

cryptoModuleSuccessfulLoginDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a last successful Crypto Officer login."
    ::= { cryptoModuleEntry 7 }

cryptoModuleUnsuccessfulLoginDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a last unsuccessful Crypto Officer login."
    ::= { cryptoModuleEntry 8 }

cryptoModuleFwpHash OBJECT-TYPE
    SYNTAX        FspR7SnmpHexString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Hash value calculated for the firmware package using sha-256. Hash value is used to verify the firmware package has not been modified or corrupted."
    ::= { cryptoModuleEntry 9 }

cryptoModuleCryBoot OBJECT-TYPE
    SYNTAX        CryptoFspR7CryBoot
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Encryption Restart"
    ::= { cryptoModuleEntry 10 }

cryptoModuleStbyFwpHash OBJECT-TYPE
    SYNTAX        FspR7SnmpHexString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Hash value calculated for the standby firmware package of the using sha-256. Hash value is used to verify the firmware package has not been modified or corrupted."
    ::= { cryptoModuleEntry 11 }

cryptoModuleSelfTestExecute OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Executed selftests"
    ::= { cryptoModuleEntry 12 }

cryptoModuleSelfTestResult OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Result of Selftest"
    ::= { cryptoModuleEntry 13 }

cryptoModuleCapTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoModuleCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related parameters defined per module."
    ::= { moduleEncryptionObjects 21 }

cryptoModuleCapEntry OBJECT-TYPE
    SYNTAX        CryptoModuleCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable module."
    INDEX       {
                  entityEqptShelfNo,
                  entityEqptSlotNo,
                  entityEqptPortNo,
                  entityEqptExtNo,
                  entityEqptClassName
                }
    ::= { cryptoModuleCapTable 1 }

CryptoModuleCapEntry ::= SEQUENCE
  {    cryptoModuleCapCryptoOfficerPassword Integer32,
    cryptoModuleCapResetToFactory CryptoFspR7EncryptionResetCaps,
    cryptoModuleCapFirmwareUpdateState CryptoFspR7EnableDisableCaps,
    cryptoModuleCapFirmwareVersion Integer32,
    cryptoModuleCapSelfTestOperation CryptoFspR7SelfTestOperationCaps,
    cryptoModuleCapCryBoot CryptoFspR7CryBootCaps }

cryptoModuleCapCryptoOfficerPassword OBJECT-TYPE
    SYNTAX        Integer32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The current Crypto Officer password. It may be only modified, but cannot be read. Read attempt
        of this object will result with noSuchName error."
    ::= { cryptoModuleCapEntry 1 }

cryptoModuleCapResetToFactory OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionResetCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Executes 'reset to factory' action."
    ::= { cryptoModuleCapEntry 2 }

cryptoModuleCapFirmwareUpdateState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisableCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Determines if it is allowed for a module to perform firmware upgrade."
    ::= { cryptoModuleCapEntry 3 }

cryptoModuleCapFirmwareVersion OBJECT-TYPE
    SYNTAX        Integer32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware package version designated for an upgrade."
    ::= { cryptoModuleCapEntry 4 }

cryptoModuleCapSelfTestOperation OBJECT-TYPE
    SYNTAX        CryptoFspR7SelfTestOperationCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Starts self-tests."
    ::= { cryptoModuleCapEntry 5 }

cryptoModuleCapCryBoot OBJECT-TYPE
    SYNTAX        CryptoFspR7CryBootCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption Restart"
    ::= { cryptoModuleCapEntry 6 }


--    port encryption configuration

cryptoPortConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoPortConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related writeable parameters defined per port."
    ::= { portEncryptionObjects 12 }

cryptoPortConfigEntry OBJECT-TYPE
    SYNTAX        CryptoPortConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable port."
    INDEX       {
                  cryptoPortConfigIndex
                }
    ::= { cryptoPortConfigTable 1 }

CryptoPortConfigEntry ::= SEQUENCE
  {    cryptoPortConfigIndex EntityIndex,
    cryptoPortConfigAuthKey SnmpAdminString,
    cryptoPortConfigAuthKeyLifeTime CryptoFspR7SessionKeyLifetime,
    cryptoPortConfigEncryptionOffState CryptoFspR7EnableDisable,
    cryptoPortConfigEncryptionOff CryptoFspR7EncryptionSwitch,
    cryptoPortConfigForceKeyExchange CryptoFspR7ForceKeyExchange,
    cryptoPortConfigKeyExchangeForcedClear CryptoFspR7KeyExchangeForcedClear }

cryptoPortConfigIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Address of an encryption capable port."
    ::= { cryptoPortConfigEntry 1 }

cryptoPortConfigAuthKey OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Encryption password being an input to generate an authentication key used to
        traffic encryption between ports. This object can be write only. Read attempt
        will fail with noSuchName error."
    ::= { cryptoPortConfigEntry 2 }

cryptoPortConfigAuthKeyLifeTime OBJECT-TYPE
    SYNTAX        CryptoFspR7SessionKeyLifetime
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Determines a life period of an introduced authentication key for a traffic encryption."
    ::= { cryptoPortConfigEntry 3 }

cryptoPortConfigEncryptionOffState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Enable/disable possibility of using encryption switch. This is an additional trigger required to
        make a transition into transparent mode in two steps."
    ::= { cryptoPortConfigEntry 4 }

cryptoPortConfigEncryptionOff OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionSwitch
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Disable/enable encryption switch."
    ::= { cryptoPortConfigEntry 5 }

cryptoPortConfigForceKeyExchange OBJECT-TYPE
    SYNTAX        CryptoFspR7ForceKeyExchange
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Force key exchange."
    ::= { cryptoPortConfigEntry 6 }

cryptoPortConfigKeyExchangeForcedClear OBJECT-TYPE
    SYNTAX        CryptoFspR7KeyExchangeForcedClear
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Clears on demand the alarmEncryptionPortKeyExchangeForced condition."
    ::= { cryptoPortConfigEntry 7 }


--    port encryption monitoring

cryptoPortStatusTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoPortStatusEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related readable parameters defined per port."
    ::= { portEncryptionObjects 13 }

cryptoPortStatusEntry OBJECT-TYPE
    SYNTAX        CryptoPortStatusEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable port."
    INDEX       {
                  cryptoPortStatusIndex
                }
    ::= { cryptoPortStatusTable 1 }

CryptoPortStatusEntry ::= SEQUENCE
  {    cryptoPortStatusIndex EntityIndex,
    cryptoPortStatusEncryptionOffTimeRemaining Unsigned32,
    cryptoPortStatusFailureKeyExchangeCount Unsigned32,
    cryptoPortStatusSuccessfulKeyExchangeDateAndTime DateAndTime,
    cryptoPortStatusUnsuccessfulKeyExchangeDateAndTime DateAndTime,
    cryptoPortStatusAuthKeyLifeTimeRemaining Unsigned32,
    cryptoPortStatusEncryptionOffCapability CryptoFspR7EnableDisable }

cryptoPortStatusIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Address of an encryption capable module."
    ::= { cryptoPortStatusEntry 1 }

cryptoPortStatusEncryptionOffTimeRemaining OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about amount of minutes remaining to restore traffic encryption."
    ::= { cryptoPortStatusEntry 2 }

cryptoPortStatusFailureKeyExchangeCount OBJECT-TYPE
    SYNTAX        Unsigned32 (0..3 | 4294967295)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Numbers of unsuccessful encryption key exchanges since the successful one."
    ::= { cryptoPortStatusEntry 3 }

cryptoPortStatusSuccessfulKeyExchangeDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a recent successful encryption key exchange."
    ::= { cryptoPortStatusEntry 4 }

cryptoPortStatusUnsuccessfulKeyExchangeDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a recent unsuccessful encryption key exchange."
    ::= { cryptoPortStatusEntry 5 }

cryptoPortStatusAuthKeyLifeTimeRemaining OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Remaining time for cryptoPortConfigAuthKeyLifeTime timer to stop counting."
    ::= { cryptoPortStatusEntry 6 }

cryptoPortStatusEncryptionOffCapability OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Capability for encryption switch."
    ::= { cryptoPortStatusEntry 7 }


--    five index scheme port encryption 

cryptoPortTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoPortEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related parameters defined per port."
    ::= { portEncryptionObjects 20 }

cryptoPortEntry OBJECT-TYPE
    SYNTAX        CryptoPortEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable port."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName
                }
    ::= { cryptoPortTable 1 }

CryptoPortEntry ::= SEQUENCE
  {    cryptoPortAuthKey SnmpAdminString,
    cryptoPortAuthKeyLifeTime CryptoFspR7SessionKeyLifetime,
    cryptoPortEncryptionOffState CryptoFspR7EnableDisable,
    cryptoPortEncryptionOff CryptoFspR7EncryptionSwitch,
    cryptoPortForceKeyExchange CryptoFspR7ForceKeyExchange,
    cryptoPortKeyExchangeForcedClear CryptoFspR7KeyExchangeForcedClear,
    cryptoPortEncryptionOffTimeRemaining Unsigned32,
    cryptoPortFailureKeyExchangeCount Unsigned32,
    cryptoPortSuccessfulKeyExchangeDateAndTime DateAndTime,
    cryptoPortUnsuccessfulKeyExchangeDateAndTime DateAndTime,
    cryptoPortAuthKeyLifeTimeRemaining Unsigned32,
    cryptoPortTagFailureLimit Unsigned32,
    cryptoPortTagFailurePeriod Unsigned32,
    cryptoPortTagReceiveFailures Unsigned32,
    cryptoPortTagClear CryptoFspR7KeyExchangeForcedClear,
    cryptoPortEncryptionChannel CryptoFspR7EncryptionCommunication,
    cryptoPortTagFailTimeExpiration Unsigned32,
    cryptoPortGenAuthKey FspR7RlsAction,
    cryptoPortAcceptFpKeyRx FspR7RlsAction,
    cryptoPortFpKey FspR7SnmpHexString,
    cryptoPortFpKeyRx FspR7SnmpHexString }

cryptoPortAuthKey OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Encryption password being an input to generate an authentication key used to
        traffic encryption between ports. This object can be write only. Read attempt
        will fail with noSuchName error."
    ::= { cryptoPortEntry 1 }

cryptoPortAuthKeyLifeTime OBJECT-TYPE
    SYNTAX        CryptoFspR7SessionKeyLifetime
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Determines a life period of an introduced authentication key for a traffic encryption."
    ::= { cryptoPortEntry 2 }

cryptoPortEncryptionOffState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisable
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Enable/disable possibility of using encryption switch. This is an additional trigger required to
        make a transition into transparent mode in two steps."
    ::= { cryptoPortEntry 3 }

cryptoPortEncryptionOff OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionSwitch
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Disable/enable encryption switch."
    ::= { cryptoPortEntry 4 }

cryptoPortForceKeyExchange OBJECT-TYPE
    SYNTAX        CryptoFspR7ForceKeyExchange
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Force key exchange."
    ::= { cryptoPortEntry 5 }

cryptoPortKeyExchangeForcedClear OBJECT-TYPE
    SYNTAX        CryptoFspR7KeyExchangeForcedClear
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Clears on demand the alarmEncryptionPortKeyExchangeForced condition."
    ::= { cryptoPortEntry 6 }

cryptoPortEncryptionOffTimeRemaining OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about amount of minutes remaining to restore traffic encryption."
    ::= { cryptoPortEntry 7 }

cryptoPortFailureKeyExchangeCount OBJECT-TYPE
    SYNTAX        Unsigned32 (0..3 | 4294967295)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Numbers of unsuccessful encryption key exchanges since the successful one."
    ::= { cryptoPortEntry 8 }

cryptoPortSuccessfulKeyExchangeDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a recent successful encryption key exchange."
    ::= { cryptoPortEntry 9 }

cryptoPortUnsuccessfulKeyExchangeDateAndTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The date and time of a recent unsuccessful encryption key exchange."
    ::= { cryptoPortEntry 10 }

cryptoPortAuthKeyLifeTimeRemaining OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Remaining time for cryptoPortConfigAuthKeyLifeTime timer to stop counting."
    ::= { cryptoPortEntry 11 }

cryptoPortTagFailureLimit OBJECT-TYPE
    SYNTAX        Unsigned32 (1..100 | 4294967295)
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Number of Ethernet packets received with a tag errors in the specified time window (TAGFAIL-TIMER) that causes the 'Tag Error-Limit Reached' (TAG-FAIL) alarm to be generated"
    ::= { cryptoPortEntry 12 }

cryptoPortTagFailurePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (10..28800 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Time window Ethernet packets with tag errors are counted/accumualted for alarm purposes"
    ::= { cryptoPortEntry 13 }

cryptoPortTagReceiveFailures OBJECT-TYPE
    SYNTAX        Unsigned32 (0..3 | 4294967295)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Count of Ethernet packets received with a tag error in the specified time window (TAGFAIL-TIMER)"
    ::= { cryptoPortEntry 14 }

cryptoPortTagClear OBJECT-TYPE
    SYNTAX        CryptoFspR7KeyExchangeForcedClear
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Allows the operator to reset (zero) the Ethernet packet tag error count for the current specified time window (TAGFAIL-TIME)"
    ::= { cryptoPortEntry 15 }

cryptoPortEncryptionChannel OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionCommunication
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Embedded Communication Channel used to support Encryption"
    ::= { cryptoPortEntry 16 }

cryptoPortTagFailTimeExpiration OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Count down of time window for Ethernet packets with tag errors for alarm purposes"
    ::= { cryptoPortEntry 17 }

cryptoPortGenAuthKey OBJECT-TYPE
    SYNTAX        FspR7RlsAction
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Generate new authentication key"
    ::= { cryptoPortEntry 18 }

cryptoPortAcceptFpKeyRx OBJECT-TYPE
    SYNTAX        FspR7RlsAction
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Accept Authentication key received from far end"
    ::= { cryptoPortEntry 19 }

cryptoPortFpKey OBJECT-TYPE
    SYNTAX        FspR7SnmpHexString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Authentication Key"
    ::= { cryptoPortEntry 20 }

cryptoPortFpKeyRx OBJECT-TYPE
    SYNTAX        FspR7SnmpHexString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Authentication key received from the far end"
    ::= { cryptoPortEntry 21 }

cryptoPortCapTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoPortCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related parameters defined per port."
    ::= { portEncryptionObjects 21 }

cryptoPortCapEntry OBJECT-TYPE
    SYNTAX        CryptoPortCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents an encryption-capable port."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName
                }
    ::= { cryptoPortCapTable 1 }

CryptoPortCapEntry ::= SEQUENCE
  {    cryptoPortCapAuthKey Integer32,
    cryptoPortCapAuthKeyLifeTime CryptoFspR7SessionKeyLifetimeCaps,
    cryptoPortCapEncryptionOffState CryptoFspR7EnableDisableCaps,
    cryptoPortCapEncryptionOff CryptoFspR7EncryptionSwitchCaps,
    cryptoPortCapForceKeyExchange CryptoFspR7ForceKeyExchangeCaps,
    cryptoPortCapKeyExchangeForcedClear CryptoFspR7KeyExchangeForcedClearCaps,
    cryptoPortCapTagFailureLimit FspR7Unsigned32Caps,
    cryptoPortCapTagFailurePeriod FspR7Unsigned32Caps,
    cryptoPortCapTagClear CryptoFspR7KeyExchangeForcedClearCaps,
    cryptoPortCapEncryptionChannel CryptoFspR7EncryptionCommunicationCaps,
    cryptoPortCapGenAuthKey FspR7RlsActionCaps,
    cryptoPortCapAcceptAuthRxKey FspR7RlsActionCaps }

cryptoPortCapAuthKey OBJECT-TYPE
    SYNTAX        Integer32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption password being an input to generate an authentication key used to
        traffic encryption between ports. This object can be write only. Read attempt
        will fail with noSuchName error."
    ::= { cryptoPortCapEntry 1 }

cryptoPortCapAuthKeyLifeTime OBJECT-TYPE
    SYNTAX        CryptoFspR7SessionKeyLifetimeCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Determines a life period of an introduced authentication key for a traffic encryption."
    ::= { cryptoPortCapEntry 2 }

cryptoPortCapEncryptionOffState OBJECT-TYPE
    SYNTAX        CryptoFspR7EnableDisableCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Enable/disable possibility of using encryption switch. This is an additional trigger required to
        make a transition into transparent mode in two steps."
    ::= { cryptoPortCapEntry 3 }

cryptoPortCapEncryptionOff OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionSwitchCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Disable/enable encryption switch."
    ::= { cryptoPortCapEntry 4 }

cryptoPortCapForceKeyExchange OBJECT-TYPE
    SYNTAX        CryptoFspR7ForceKeyExchangeCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Force key exchange."
    ::= { cryptoPortCapEntry 5 }

cryptoPortCapKeyExchangeForcedClear OBJECT-TYPE
    SYNTAX        CryptoFspR7KeyExchangeForcedClearCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Clears on demand the alarmEncryptionPortKeyExchangeForced condition."
    ::= { cryptoPortCapEntry 6 }

cryptoPortCapTagFailureLimit OBJECT-TYPE
    SYNTAX        FspR7Unsigned32Caps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of Ethernet packets received with a tag errors in the specified time window (TAGFAIL-TIMER) that causes the 'Tag Error-Limit Reached' (TAG-FAIL) alarm to be generated"
    ::= { cryptoPortCapEntry 7 }

cryptoPortCapTagFailurePeriod OBJECT-TYPE
    SYNTAX        FspR7Unsigned32Caps
    UNITS         "s"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Time window Ethernet packets with tag errors are counted/accumualted for alarm purposes"
    ::= { cryptoPortCapEntry 8 }

cryptoPortCapTagClear OBJECT-TYPE
    SYNTAX        CryptoFspR7KeyExchangeForcedClearCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Allows the operator to reset (zero) the Ethernet packet tag error count for the current specified time window (TAGFAIL-TIME)"
    ::= { cryptoPortCapEntry 9 }

cryptoPortCapEncryptionChannel OBJECT-TYPE
    SYNTAX        CryptoFspR7EncryptionCommunicationCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Embedded Communication Channel used to support Encryption"
    ::= { cryptoPortCapEntry 10 }

cryptoPortCapGenAuthKey OBJECT-TYPE
    SYNTAX        FspR7RlsActionCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Generate new authentication key"
    ::= { cryptoPortCapEntry 11 }

cryptoPortCapAcceptAuthRxKey OBJECT-TYPE
    SYNTAX        FspR7RlsActionCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Accept Authentication key received from far end"
    ::= { cryptoPortCapEntry 12 }


--    performance monitoring of an encrypted port

intervalEncryptionSublayerPm15minTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF IntervalEncryptionSublayerPm15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains encryption-related performance monitoring 15-min
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 1 }

intervalEncryptionSublayerPm15minEntry OBJECT-TYPE
    SYNTAX        IntervalEncryptionSublayerPm15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityIndex,
                  intervalEncryptionSublayerPm15minNumber
                }
    ::= { intervalEncryptionSublayerPm15minTable 1 }

IntervalEncryptionSublayerPm15minEntry ::= SEQUENCE
  {    intervalEncryptionSublayerPm15minNumber Integer32,
    intervalEncryptionSublayerPm15minEncryptionRunSeconds Unsigned32,
    intervalEncryptionSublayerPm15minEncryptionRunErrorSeconds Unsigned32,
    intervalEncryptionSublayerPm15minEncryptionRunDegradeSeconds Unsigned32,
    intervalEncryptionSublayerPm15minValidFlag TruthValue,
    intervalEncryptionSublayerPm15minTimeStamp DateAndTime }

intervalEncryptionSublayerPm15minNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..96)
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "A number between 1 and 96, which identifies the interval for
        which the set of statistics is available. The interval
        identified by 1 is the most recently completed 15 minute
        interval, and the interval identified by N is the interval
        immediately preceding the one identified by N-1."
    ::= { intervalEncryptionSublayerPm15minEntry 1 }

intervalEncryptionSublayerPm15minEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm15minEntry 2 }

intervalEncryptionSublayerPm15minEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about errorous time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm15minEntry 3 }

intervalEncryptionSublayerPm15minEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about degraded time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm15minEntry 4 }

intervalEncryptionSublayerPm15minValidFlag OBJECT-TYPE
    SYNTAX        TruthValue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Valid Flag"
    ::= { intervalEncryptionSublayerPm15minEntry 5 }

intervalEncryptionSublayerPm15minTimeStamp OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Timestamp"
    ::= { intervalEncryptionSublayerPm15minEntry 6 }

intervalEncryptionSublayerPm1dayTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF IntervalEncryptionSublayerPm1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains interval encryption-related performance monitoring 15-min
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 2 }

intervalEncryptionSublayerPm1dayEntry OBJECT-TYPE
    SYNTAX        IntervalEncryptionSublayerPm1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityIndex,
                  intervalEncryptionSublayerPm1dayNumber
                }
    ::= { intervalEncryptionSublayerPm1dayTable 1 }

IntervalEncryptionSublayerPm1dayEntry ::= SEQUENCE
  {    intervalEncryptionSublayerPm1dayNumber Integer32,
    intervalEncryptionSublayerPm1dayEncryptionRunSeconds Unsigned32,
    intervalEncryptionSublayerPm1dayEncryptionRunErrorSeconds Unsigned32,
    intervalEncryptionSublayerPm1dayEncryptionRunDegradeSeconds Unsigned32,
    intervalEncryptionSublayerPm1dayValidFlag TruthValue,
    intervalEncryptionSublayerPm1dayTimeStamp DateAndTime }

intervalEncryptionSublayerPm1dayNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..31)
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "A number, which identifies the interval for
        which the set of statistics is available. The interval
        identified by 1 is the most recently completed 1 day
        interval."
    ::= { intervalEncryptionSublayerPm1dayEntry 1 }

intervalEncryptionSublayerPm1dayEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm1dayEntry 2 }

intervalEncryptionSublayerPm1dayEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about errorous time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm1dayEntry 3 }

intervalEncryptionSublayerPm1dayEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about degraded time period (seconds) during encryption mode."
    ::= { intervalEncryptionSublayerPm1dayEntry 4 }

intervalEncryptionSublayerPm1dayValidFlag OBJECT-TYPE
    SYNTAX        TruthValue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Valid Flag"
    ::= { intervalEncryptionSublayerPm1dayEntry 5 }

intervalEncryptionSublayerPm1dayTimeStamp OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Timestamp"
    ::= { intervalEncryptionSublayerPm1dayEntry 6 }

currentEncryptionSublayerPm15minTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CurrentEncryptionSublayerPm15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains current encryption-related performance monitoring 15-min
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 3 }

currentEncryptionSublayerPm15minEntry OBJECT-TYPE
    SYNTAX        CurrentEncryptionSublayerPm15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityIndex
                }
    ::= { currentEncryptionSublayerPm15minTable 1 }

CurrentEncryptionSublayerPm15minEntry ::= SEQUENCE
  {    currentEncryptionSublayerPm15minEncryptionRunSeconds Unsigned32,
    currentEncryptionSublayerPm15minEncryptionRunErrorSeconds Unsigned32,
    currentEncryptionSublayerPm15minEncryptionRunDegradeSeconds Unsigned32,
    currentEncryptionSublayerPm15minElapsedTime Integer32 }

currentEncryptionSublayerPm15minEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption running seconds"
    ::= { currentEncryptionSublayerPm15minEntry 1 }

currentEncryptionSublayerPm15minEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption Errored Seconds"
    ::= { currentEncryptionSublayerPm15minEntry 2 }

currentEncryptionSublayerPm15minEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption in degrade mode seconds"
    ::= { currentEncryptionSublayerPm15minEntry 3 }

currentEncryptionSublayerPm15minElapsedTime OBJECT-TYPE
    SYNTAX        Integer32 (0..9000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Elapsed 15Min"
    ::= { currentEncryptionSublayerPm15minEntry 4 }

currentEncryptionSublayerPm1dayTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CurrentEncryptionSublayerPm1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains current encryption-related performance monitoring 1-day
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 4 }

currentEncryptionSublayerPm1dayEntry OBJECT-TYPE
    SYNTAX        CurrentEncryptionSublayerPm1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityIndex
                }
    ::= { currentEncryptionSublayerPm1dayTable 1 }

CurrentEncryptionSublayerPm1dayEntry ::= SEQUENCE
  {    currentEncryptionSublayerPm1dayEncryptionRunSeconds Unsigned32,
    currentEncryptionSublayerPm1dayEncryptionRunErrorSeconds Unsigned32,
    currentEncryptionSublayerPm1dayEncryptionRunDegradeSeconds Unsigned32,
    currentEncryptionSublayerPm1dayElapsedTime Integer32 }

currentEncryptionSublayerPm1dayEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption running seconds"
    ::= { currentEncryptionSublayerPm1dayEntry 1 }

currentEncryptionSublayerPm1dayEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption Errored Seconds"
    ::= { currentEncryptionSublayerPm1dayEntry 2 }

currentEncryptionSublayerPm1dayEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption in degrade mode seconds"
    ::= { currentEncryptionSublayerPm1dayEntry 3 }

currentEncryptionSublayerPm1dayElapsedTime OBJECT-TYPE
    SYNTAX        Integer32 (0..86400 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Elapsed 1Day"
    ::= { currentEncryptionSublayerPm1dayEntry 4 }


--    five index scheme performance monitoring of an encrypted port 

cryFacilityCurrent15minTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryFacilityCurrent15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains current encryption-related performance monitoring 15-min
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 10 }

cryFacilityCurrent15minEntry OBJECT-TYPE
    SYNTAX        CryFacilityCurrent15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName
                }
    ::= { cryFacilityCurrent15minTable 1 }

CryFacilityCurrent15minEntry ::= SEQUENCE
  {    cryFacilityCurrent15minEncryptionRunSeconds Unsigned32,
    cryFacilityCurrent15minEncryptionRunErrorSeconds Unsigned32,
    cryFacilityCurrent15minEncryptionRunDegradeSeconds Unsigned32,
    cryFacilityCurrent15minElapsedTime Integer32 }

cryFacilityCurrent15minEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption running seconds"
    ::= { cryFacilityCurrent15minEntry 1 }

cryFacilityCurrent15minEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption Errored Seconds"
    ::= { cryFacilityCurrent15minEntry 2 }

cryFacilityCurrent15minEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption in degrade mode seconds"
    ::= { cryFacilityCurrent15minEntry 3 }

cryFacilityCurrent15minElapsedTime OBJECT-TYPE
    SYNTAX        Integer32 (0..9000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Elapsed 15Min"
    ::= { cryFacilityCurrent15minEntry 4 }

cryFacilityCurrent1dayTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryFacilityCurrent1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains current encryption-related performance monitoring 1-day
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 11 }

cryFacilityCurrent1dayEntry OBJECT-TYPE
    SYNTAX        CryFacilityCurrent1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName
                }
    ::= { cryFacilityCurrent1dayTable 1 }

CryFacilityCurrent1dayEntry ::= SEQUENCE
  {    cryFacilityCurrent1dayEncryptionRunSeconds Unsigned32,
    cryFacilityCurrent1dayEncryptionRunErrorSeconds Unsigned32,
    cryFacilityCurrent1dayEncryptionRunDegradeSeconds Unsigned32,
    cryFacilityCurrent1dayElapsedTime Integer32 }

cryFacilityCurrent1dayEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption running seconds"
    ::= { cryFacilityCurrent1dayEntry 1 }

cryFacilityCurrent1dayEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption Errored Seconds"
    ::= { cryFacilityCurrent1dayEntry 2 }

cryFacilityCurrent1dayEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Encryption in degrade mode seconds"
    ::= { cryFacilityCurrent1dayEntry 3 }

cryFacilityCurrent1dayElapsedTime OBJECT-TYPE
    SYNTAX        Integer32 (0..86400 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Elapsed 1Day"
    ::= { cryFacilityCurrent1dayEntry 4 }

cryFacilityHistorical15minTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryFacilityHistorical15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains historical encryption-related performance monitoring 15-min
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 12 }

cryFacilityHistorical15minEntry OBJECT-TYPE
    SYNTAX        CryFacilityHistorical15minEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName,
                  cryFacilityHistorical15minNumber
                }
    ::= { cryFacilityHistorical15minTable 1 }

CryFacilityHistorical15minEntry ::= SEQUENCE
  {    cryFacilityHistorical15minNumber Integer32,
    cryFacilityHistorical15minEncryptionRunSeconds Unsigned32,
    cryFacilityHistorical15minEncryptionRunErrorSeconds Unsigned32,
    cryFacilityHistorical15minEncryptionRunDegradeSeconds Unsigned32,
    cryFacilityHistorical15minValidFlag TruthValue,
    cryFacilityHistorical15minTimeStamp DateAndTime }

cryFacilityHistorical15minNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..96)
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "A number between 1 and 96, which identifies the interval for
        which the set of statistics is available. The interval
        identified by 1 is the most recently completed 15 minute
        interval, and the interval identified by N is the interval
        immediately preceding the one identified by N-1."
    ::= { cryFacilityHistorical15minEntry 1 }

cryFacilityHistorical15minEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical15minEntry 2 }

cryFacilityHistorical15minEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about errorous time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical15minEntry 3 }

cryFacilityHistorical15minEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about degraded time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical15minEntry 4 }

cryFacilityHistorical15minValidFlag OBJECT-TYPE
    SYNTAX        TruthValue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Valid Flag"
    ::= { cryFacilityHistorical15minEntry 5 }

cryFacilityHistorical15minTimeStamp OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Timestamp"
    ::= { cryFacilityHistorical15minEntry 6 }

cryFacilityHistorical1dayTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryFacilityHistorical1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table contains historical encryption-related performance monitoring 1-day
        values related to channel ports."
    ::= { encryptionPerformanceMonitoring 13 }

cryFacilityHistorical1dayEntry OBJECT-TYPE
    SYNTAX        CryFacilityHistorical1dayEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Every row of this table represents performance monitoring entry."
    INDEX       {
                  entityFacilityShelfNo,
                  entityFacilitySlotNo,
                  entityFacilityPortNo,
                  entityFacilityExtNo,
                  entityFacilityClassName,
                  cryFacilityHistorical1dayNumber
                }
    ::= { cryFacilityHistorical1dayTable 1 }

CryFacilityHistorical1dayEntry ::= SEQUENCE
  {    cryFacilityHistorical1dayNumber Integer32,
    cryFacilityHistorical1dayEncryptionRunSeconds Unsigned32,
    cryFacilityHistorical1dayEncryptionRunErrorSeconds Unsigned32,
    cryFacilityHistorical1dayEncryptionRunDegradeSeconds Unsigned32,
    cryFacilityHistorical1dayValidFlag TruthValue,
    cryFacilityHistorical1dayTimeStamp DateAndTime }

cryFacilityHistorical1dayNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..31)
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "A number, which identifies the interval for
        which the set of statistics is available. The interval
        identified by 1 is the most recently completed 1 day
        interval."
    ::= { cryFacilityHistorical1dayEntry 1 }

cryFacilityHistorical1dayEncryptionRunSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical1dayEntry 2 }

cryFacilityHistorical1dayEncryptionRunErrorSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about errorous time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical1dayEntry 3 }

cryFacilityHistorical1dayEncryptionRunDegradeSeconds OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Informs about degraded time period (seconds) during encryption mode."
    ::= { cryFacilityHistorical1dayEntry 4 }

cryFacilityHistorical1dayValidFlag OBJECT-TYPE
    SYNTAX        TruthValue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Valid Flag"
    ::= { cryFacilityHistorical1dayEntry 5 }

cryFacilityHistorical1dayTimeStamp OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Timestamp"
    ::= { cryFacilityHistorical1dayEntry 6 }

cryptoRequestErrorTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF CryptoRequestErrorEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table shows a list of last 100 snmpset requests which failed."
    ::= { encryptionDiagnostics 1 }

cryptoRequestErrorEntry OBJECT-TYPE
    SYNTAX        CryptoRequestErrorEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Entry of cryptoRequestError"
    INDEX       {
                  cryptoRequestErrorId
                }
    ::= { cryptoRequestErrorTable 1 }

CryptoRequestErrorEntry ::= SEQUENCE
  {    cryptoRequestErrorId Unsigned32,
    cryptoRequestErrorType FspR7RequestErrorType,
    cryptoRequestErrorAesSpecific FspR7RequestErrorTypeAes,
    cryptoRequestErrorTimeStamp DateAndTime }

cryptoRequestErrorId OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Request ID"
    ::= { cryptoRequestErrorEntry 1 }

cryptoRequestErrorType OBJECT-TYPE
    SYNTAX        FspR7RequestErrorType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Generic error code"
    ::= { cryptoRequestErrorEntry 2 }

cryptoRequestErrorAesSpecific OBJECT-TYPE
    SYNTAX        FspR7RequestErrorTypeAes
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Specific error code for Encryption Module"
    ::= { cryptoRequestErrorEntry 3 }

cryptoRequestErrorTimeStamp OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Timestamp"
    ::= { cryptoRequestErrorEntry 4 }


END