summaryrefslogtreecommitdiff
path: root/MIBS/adva/CM-SECURITY-MIB
blob: f315661664762ae2fd468c8cd1946fcd59ac7eba (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
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
CM-SECURITY-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Unsigned32
             FROM SNMPv2-SMI
    DateAndTime, DisplayString, TruthValue, RowStatus, StorageType, 
    TEXTUAL-CONVENTION, VariablePointer
             FROM SNMPv2-TC
    OBJECT-GROUP, MODULE-COMPLIANCE
             FROM SNMPv2-CONF
    fsp150cm
             FROM  ADVA-MIB
    IpVersion, UserInterfaceType
             FROM  CM-COMMON-MIB
    Ipv6Address
             FROM  IPV6-TC
    usmUserEntry
             FROM  SNMP-USER-BASED-SM-MIB
    SnmpAdminString
             FROM  SNMP-FRAMEWORK-MIB;

cmSecurityMIB MODULE-IDENTITY
    LAST-UPDATED    "202101280000Z"
    ORGANIZATION    "ADVA Optical Networking SE"
    CONTACT-INFO
        "Web URL: http://adva.com/
        E-mail:  support@adva.com
        Postal:  ADVA Optical Networking SE
             Campus Martinsried
             Fraunhoferstrasse 9a
             82152 Martinsried/Munich
             Germany
        Phone: +49 089 89 06 65 0
        Fax:  +49 089 89 06 65 199 "
    DESCRIPTION
            "This module defines the Security MIB definitions 
             used by the F3 (FSP150CM/CC) product lines.  These are used
             to manage the user/authentication for CLI/GUI sessions.
             Copyright (C) ADVA."
    REVISION        "202101280000Z"
    DESCRIPTION
             "Notes from release 202007270000Z:
              (1) Added new tables: f3CaProfileTable, f3CaTable.
              (2) Added new textual conventions: CaAction,
                  SslCertificatePrivateKeyPairAction, CertificateType,
                  CertificateStatus, AutoEnrollmentStatus, CaRootCertStatus.
              (3) Added new columns to f3SslCertificatePrivateKeyPairTable:
                  f3SslCertificatePrivateKeyPairRsaKeyPairName,
                  f3SslCertificatePrivateKeyPairCertificateType,
                  f3SslCertificatePrivateKeyPairCertificateStatus,
                  f3SslCertificatePrivateKeyPairAction.
              (4) Added new column to f3CertSigningRequestTable:
                  f3CertSigningRequestAutoEnrollmentStatus.
              (5) Added new scalar to f3SshCipherStrengthHighControl.

              Notes from release 202006180000Z:
              (1) Changed MAX-ACCESS for f3HttpsSslKeyPair from read-only to read-write
              
              Notes from release 201912010000Z
              (1) Added f3NasIpAddressType,
                  f3SslCertificateActionKeyName,
              
              Notes from release 201910010000Z
              (1) Added scalars f3HttpsSslCertExpNotifPeriod,
                  f3HttpsSslKeyPair,
                  f3SslCertificateAction,
                  f3SslCertificateActionPairName,
                  
                  Added f3SslCertificatePrivateKeyPairTable with columns:
                  f3SslCertificatePrivateKeyPairName,
                  f3SslCertificatePrivateKeyPairSslCertificate,
                  f3SslCertificatePrivateKeyPairPrivateKeyPresent

              Notes from release 201905280000Z
              (1) added cmSecurityUserSso2fa to cmSecurityUserTable
              (2) added scalar f3Sso2faControl

              Notes from release 201706270000Z
              (1) Added Object Identifier cmIcmpV4Objects with scalar objects:
                  icmpV4Filter, icmpV4DropEchoRequests
              (2) Added Object Identifier cmIcmpV6Objects with scalar objects:
                  icmpV6Filter, icmpV6DropEchoRequests, icmpV6DropNeighborSolicitation,
                  icmpV6DropRouterAdvertisement, icmpV6DropNeighborAdvertisement,
                  icmpV6DropRouterSolicitation
	      
	      Notes from release 201704030000Z
              (1) add f3RadiusSendVendorAvpEnabled and f3RadiusRealm to the MIB

              Notes from release 201606140000Z
              (1) added cmSecurityUserRemoteCryptoUser to cmSecurityUserTable

              Notes from release 201602080000Z
              (1)Added literal netconf to CmSecurityPrivLevel

              Notes from release 201509180000Z
              (1)Added cmSecurityCryptoPassword attribute to cmSecurityUserTable

              Note from release  201106270000Z,
              (1)Added f3TacacsPrivLevelControlEnabled, f3TacacsDefaultPrivLevel

              Note from release 201104140000Z,
              (1)Added cmSecurityUserAction to support remove-lockout

              Note from release 201101050000Z,
              (1)Added f3UsmUserTable - an augment to UsmUserTable

              Note from release 201002120000Z,
              (1)MIBs updated for supported functionality in R4.3CC and R4.1CM 
                 (a)cmRemoteAuthServerTable has new objects 
                    cmRemoteAuthServerAccountingPort to support RADIUS accounting
              
              Notes from release 200903190000Z,
             (1)MIB version ready for release FSP150CC GE101, GE206 devices
               (a)Added Textual convention CmSecurityPolicyStrength
               (b)Added MIB scalar cmSecurityPolicyStrength

             (2)Following changes are made to the cmSecurityUserTable,
                (a)cmSecurityUserPassword column to modify security user password
                (b)cmSecurityUserStorageType and cmSecurityUserRowStatus columns added 
                   thereby allowing creation/deletion of Security Users
                (c)cmSecurityUserComment, cmSecurityUserPrivLevel, 
                   cmSecurityUserLoginTimeout, cmSecurityUserNumFailedLoginAttempts, 
                   cmSecurityUserCliPagingEnable columns are now read-write
                   to allow write access. 

            Notes from release 200803030000Z,
             (1)MIB version ready for release FSP150CM 3.1." 
    ::= {fsp150cm 10}    

-- 
-- OID definitions
-- 
cmSecurityObjects           OBJECT IDENTIFIER ::= {cmSecurityMIB 1}
cmSecurityConformance       OBJECT IDENTIFIER ::= {cmSecurityMIB 2}
cmSecurityNotifications     OBJECT IDENTIFIER ::= {cmSecurityMIB 3}

cmIcmpV4Objects             OBJECT IDENTIFIER ::= { cmSecurityObjects 20 }
cmIcmpV6Objects             OBJECT IDENTIFIER ::= { cmSecurityObjects 21 }

f3FipsObjects               OBJECT IDENTIFIER ::= { cmSecurityObjects 23 }
f3SslCertificateObjects     OBJECT IDENTIFIER ::= { cmSecurityObjects 25 }

f3RsaKeyPairObjects          OBJECT IDENTIFIER ::= { cmSecurityObjects 26 }
f3CertSigningRequestObjects  OBJECT IDENTIFIER ::= { cmSecurityObjects 27 }

--
-- Textual conventions.
--
SecuritySelfTestResult ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for Security Self Test Result 
          fail     - fail to pass the test, 
          success  - success to pass the test."
    SYNTAX       INTEGER {
                   notApplicable (0),
                   fail (1),
                   success (2)
                 }

SecuritySelfTestStatus ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for Security Self Test Status 
          notStarted - test not started.
          inprogress - test is in progress.
          complete   - test has completed."
    SYNTAX       INTEGER {
                   notApplicable (0),
                   notStarted (1),
                   inprogress (2),
                   complete (3)
                 }

CmRemoteAuthProtocol ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for remote authentication protocol.
          none   - No remote authentication protocol, 
          radius - RADIUS (Remote Authentication Dial-In User Service), 
          tacacs - TACACS+(Terminal Access Controller Access Control System)."
    SYNTAX       INTEGER {
                   none (1),
                   radius (2),
                   tacacs (3)
                 }

CmSecurityAccessOrder ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for order for security access.
             local  - Local database for user/security validation, 
             remote - Remote protocol for user/security validation."
    SYNTAX       INTEGER {
                   local (1),
                   remote (2)
                 }

CmSecurityAuthType ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for remote authentication protocol types.
             pap  - Password Authentication Protocol, 
             chap - Challenge-Handshake Authentication Protocol."
    SYNTAX       INTEGER {
                   pap (1),
                   chap (2),
                   ascii (3)
                 }

CmSecurityPrivLevel ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for Security Privilege Level.
             retrieve         - Retrieve Privilege Level (can only 
                                VIEW management information), 
             maintenance      - Maintenance Privilege Level 
                                (can VIEW management, as well as perform 
                                maintenance operations such as loopbacks,
                                etherjack diagnosis etc.)
             provisioning     - Provisioning Privilege Level
                                (can perform Provisioning operations) 
             superuser        - Super User Privilege Level
                                (can perform all operations)
             testuser         - Retrieve Privilege Level
                                and some maintenance, 
                                provisioning operations.
             cryptouser       - Crypto User Privilege Level 
                                (can perform security operations)
             netconf          - NETCONF Privilege Level"
    SYNTAX       INTEGER {
                   not-applicable(0),
                   retrieve (1),
                   maintenance (2),
                   provisioning (3),
                   superuser (4),
                   testuser (5),
                   cryptouser (6),
                   netconf (7)
                 }

CmRemoteAuthOrder ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for order for remote authentication access.
             first  - first to access the remote authentication, 
             second - second to access the remote authentication,
             third  - third to access the remote authentication."
    SYNTAX       INTEGER {
                   first (1),
                   second (2),
                   third (3)
                 }

CmSecurityPolicyStrength ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for security policy strength 
             low  - Low Security Policy, 
             medium - Medium Security Policy,
             high  - High Security Policy."
    SYNTAX       INTEGER {
                   low (1),
                   medium (2),
                   high (3)
                 }

UsmUserAccessType ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Enumerations for type of USM User 
             read-only  - Read only, 
             read-write - Read write ,
             trap-only  - Trap Only."
    SYNTAX       INTEGER {
                   read-only (1),
                   read-write (2),
                   trap-only (3)
                 }


SecurityUserAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Provides ability to manage security users."
    SYNTAX       INTEGER {
                   not-applicable(0),
                   remove-lockout(1) -- removes the locked out condition on security user
                 }

SnmpSecurityTrapType ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
            "Provides ability to manage security traps.
             all - trap is reported when user logs in, logs out or is locked out
             loginFailed  - trap is reported only when user failed to log in
             disabled  - security traps are disabled."

    SYNTAX     INTEGER {
                 all(1),
                 loginFailed(2),
                 disabled(3)
               }

PrivilegeRequestAction ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "Privilege request action." 
  SYNTAX        INTEGER
                {
                  undefined(0),
                  none(1),
                  approve(2),
                  deny(3),
                  cancel(4)
                }

PrivilegeRequestState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "Privilege request state." 
  SYNTAX        INTEGER
                {
                  none(1),
                  requestSent(2),
                  requestCanceled(3),
                  requestApproved(4),
                  requestDenied(5),
                  requestTimeout(6),
                  accessExpired(7),
                  accessCanceled(8)
                }

RsaKeyLengthType ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "RSA key length."
    SYNTAX       INTEGER {
                   rsaKeyLength2048 (1),
                   rsaKeyLength4096 (2)
                 }

ZeroizeKeysAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Zeroize Keys."
    SYNTAX       INTEGER {
                   notApplicable (0),
                   ZeroizeKeys (1)
                 }

RunSelfTestAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Run Self-Test."
    SYNTAX       INTEGER {
                   notApplicable (0),
                   RunSelfTest (1)
                 }
                 
SslCertificateAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Provides ability to manage SSL Certificate/Private Key pair.
         deleteSslKeyPair - delete SSL Certificate/Private Key pair
         setHttpsSslKeyPair - set SSL Certificate/Private Key pair used for HTTPS
         addRsaPrivateKey - add RSA Private Key to SSL Certificate/Private Key pair"
    SYNTAX  INTEGER {
                   notApplicable (0), 
                   deleteSslKeyPair (1),
                   setHttpsSslKeyPair (2),
                   addRsaPrivateKey (3)
                 }

RsaKeyPairAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "generate or delete RSA key pair."
    SYNTAX  INTEGER {
                   notApplicable (0), 
                   genRsaKeyPair (1),
                   delRsaKeyPair (2)
                 }

CsrAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "generate or delete CSR."
    SYNTAX  INTEGER {
                   notApplicable (0), 
                   genCsr (1),
                   delCsr (2)
                 }

NasIpAddressType ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Nas Ip Address Type."
    SYNTAX       INTEGER {
                   userDefined (1),
                   packetSourceIp (2)
                 }
                 
CertificateEnrollmentProtocol ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Protocol type used for automatic certificate enrollment."
    SYNTAX INTEGER {
             scep (1)
           }

CaAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Certificate authority action."
    SYNTAX       INTEGER {
                   none(1),
                   updateCACertificates(2),
                   startAutoEnrollment(3),
                   getCACertificates(4)
                 }

SslCertificatePrivateKeyPairAction ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "SSL certificate/private key pair action."
    SYNTAX       INTEGER {
                   none(1),
                   trustRootCACertificate(2)
                 }

CertificateType ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Certificate type."
    SYNTAX       INTEGER {
                   root(1),
                   intermediate(2),
                   device(3)
                 }

CertificateStatus ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Certificate status."
    SYNTAX       INTEGER {
                   trusted(1),
                   untrusted(2),
                   valid(3),
                   invalid(4)
                 }

AutoEnrollmentStatus ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Auto enrollment status."
    SYNTAX       INTEGER {
                   none(1),
                   failure(2),
                   success(3),
                   pending(4),
                   aborted(5),
                   timedout(6)
                 }

CaRootCertStatus ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION
        "Certificate authority root certificate status."
    SYNTAX       INTEGER {
                   pending(1),
                   active(2),
                   failed(3),
                   renewing(4),
                   renewalFailed(5)
                 }


--
-- Scalar definitions.
--
cmAuthProtocol OBJECT-TYPE
    SYNTAX     CmRemoteAuthProtocol 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Remote user authentication protocol."
    ::= { cmSecurityObjects 1 }


cmAccessOrder OBJECT-TYPE
    SYNTAX     CmSecurityAccessOrder 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "Order of access for security, i.e. try 'local' first or
             'remote' first."
    ::= { cmSecurityObjects 2 }

cmAuthType    OBJECT-TYPE
    SYNTAX     CmSecurityAuthType 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "In case of remote authentication, the chosen protocol." 
    ::= { cmSecurityObjects 3 }

cmNASIpAddress    OBJECT-TYPE
    SYNTAX     IpAddress 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "In case of remote authentication RADIUS, 
             the Network Access Server's IP Address." 
    ::= { cmSecurityObjects 4 }

-- cmSecurityUserTable is { cmSecurityObjects 5 } 
-- cmRemoteAuthServerTable is { cmSecurityObjects 6 } 

cmSecurityPolicyStrength OBJECT-TYPE
    SYNTAX     CmSecurityPolicyStrength 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "This object represents the security policy
             strength of the system.  Based on this value,
             the system puts additional restrictions on
             the user id and password rules."
    ::= { cmSecurityObjects 7 }

cmRemoteAuthServerAccountingEnabled OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to enable/disable RADIUS/TACACS+ Accounting 
          on all authentication servers." 
     ::= { cmSecurityObjects 8 }

-- f3UsmUserTable is { cmSecurityObjects 9 } 

f3TacacsPrivLevelControlEnabled OBJECT-TYPE
    SYNTAX     TruthValue
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to enable/disable the use of ENABLE authorization 
          control to determine
          the Privilege Level configured by the remote authentication server.
          This object is only valid for TACACS+. Default value of this object is
          TRUE."
     ::= { cmSecurityObjects 10 }

f3TacacsDefaultPrivLevel OBJECT-TYPE
    SYNTAX     CmSecurityPrivLevel
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows specification of the default privilege level of the
          TACACS+ user, when the use of  ENABLE authorization control is DISABLED, i.e.
          f3TacacsPrivLevelControlEnabled is set to FALSE."
     ::= { cmSecurityObjects 11 }

f3NasIpv6Addr OBJECT-TYPE
    SYNTAX     Ipv6Address
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object describe the ipv6 address."
     ::= { cmSecurityObjects 12 }

f3SecurityTrapType OBJECT-TYPE
    SYNTAX      SnmpSecurityTrapType
    MAX-ACCESS  read-write
    STATUS       current
    DESCRIPTION
         "This object provides ability to manage whether report security trap."
    ::= { cmSecurityObjects 13 }

f3SecurityTrapInfo OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS       current
    DESCRIPTION
         "This object is used to describe the security trap info.
          This object is used only in trap and GET operation on this object
          will return empty string."
    ::= { cmSecurityObjects 14 }

-- f3PrivilegeChangeTable is { CmSecurityObjects 15 }

f3UserPrivMgmtControl OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable User Privilege Management."
    ::= { cmSecurityObjects 16 }

f3UserPrivRspTimeout OBJECT-TYPE
    SYNTAX      Integer32 (1..60)
    UNITS       "minutes"
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to set response timeout for user privilege
          upgrade request in minutes."
    ::= { cmSecurityObjects 17 }

f3RadiusSendVendorAvpEnabled OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION "If enabled, Vendor-ID AVP is sent in Access-Request Messages."
    ::= { cmSecurityObjects 18 }

f3RadiusRealm  OBJECT-TYPE
    SYNTAX     DisplayString 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION  "When the value of radiusRealm is not a null string, the system shall append an '@' 
                 character and the radiusRealm string to the User-Name attribute included in 
                 Access-Request Messages. "
 ::= { cmSecurityObjects 19 }
 
 -- cmIcmpV4Objects is { cmSecurityObjects 20 }
 -- cmIcmpV6Objects is { cmSecurityObjects 21 }
 
cmAnonymizeLogTimeInDays OBJECT-TYPE
    SYNTAX     Integer32 (0..1096) 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "This object represents the logging anonymization interval in days. 
            After the configured number of days have passed, the system anonymizes the user names. 
            At midnight of that day, the system anonymizes all the log entries that precede the configured value.
            0 means NEVER anonymize."
    ::= { cmSecurityObjects 22 }
 
-- f3FipsObjects is { cmSecurityObjects 23 }

f3Sso2faControl OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION "When enabled, the f3 device will allow the creation of a cmSecurityUserEntry with
    the cmSecurityUserSso2fa set to enabled."
    ::= { cmSecurityObjects 24 }
    
f3NasIpAddressType OBJECT-TYPE
    SYNTAX      NasIpAddressType
    MAX-ACCESS  read-write
    STATUS       current
    DESCRIPTION
         "TThis object describe the ip address type."
    ::= { cmSecurityObjects 28 }

f3SshCipherStrengthHighControl OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-write
    STATUS current
    DESCRIPTION "When enabled, high cipher strength is enforced."
    ::= { cmSecurityObjects 31 }
    
-- 
-- Fips Objects 
--
f3FipsOperationMode  OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "Fips Operation Mode."
    ::= { f3FipsObjects 1 }
    
f3FipsSecuritySelfTestFailureCount  OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fips Security Self Test Failure Count."
    ::= { f3FipsObjects 2 }
    
f3FipsSecuritySelfTestResult  OBJECT-TYPE
    SYNTAX      SecuritySelfTestResult
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fips Security Self Test Result."
    ::= { f3FipsObjects 3 }
    
f3FipsSecuritySelfTestStatus  OBJECT-TYPE
    SYNTAX      SecuritySelfTestStatus
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
         "Fips Security Self Test Status."
    ::= { f3FipsObjects 4 }

f3FipsAction  OBJECT-TYPE
    SYNTAX      INTEGER {
                 notApplicable(0),
                 zeroize(1),
                 startSecSelfTest(2)
               }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "Fips Security Self Test Action."
    ::= { f3FipsObjects 5 }

--
-- cmIcmpV4Objects
--

icmpV4Filter OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable ICMP Filter. When disabled
          is set, all IcmpV4 dropping filters are not applied. 
          Only when enabled is set, IcmpV4 dropping filter can be set."
    ::= { cmIcmpV4Objects 1 }

icmpV4DropEchoRequests OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Echo Requests."
    ::= { cmIcmpV4Objects 2 }

--
-- cmIcmpV6Objects
--

icmpV6Filter OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable ICMP Filter. When disabled
          is set, all IcmpV6 dropping filters are not applied. 
          Only when enabled is set, IcmpV6 dropping filters can be set
          individually."
    ::= { cmIcmpV6Objects 1 }

icmpV6DropEchoRequests OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Echo Requests."
    ::= { cmIcmpV6Objects 2 }

icmpV6DropNeighborSolicitation OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Neighbor Solicitation."
    ::= { cmIcmpV6Objects 3 }

icmpV6DropRouterAdvertisement OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Router Advertisement."
    ::= { cmIcmpV6Objects 4 }

icmpV6DropNeighborAdvertisement OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Neighbor Advertisement."
    ::= { cmIcmpV6Objects 5 }

icmpV6DropRouterSolicitation OBJECT-TYPE
    SYNTAX      INTEGER { enabled(1), disabled(2) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This object is used to enable/disable Dropping Router Solicitation."
    ::= { cmIcmpV6Objects 6 }

-- 
-- Ssl Certificate Objects
--
f3HttpsSslCertExpNotifPeriod  OBJECT-TYPE
    SYNTAX      Unsigned32 (1..180)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "Number of days prior to expiration of the HTTPS SSL Certificate 
          that the Expiry Notification Alarm will be raised."
    ::= { f3SslCertificateObjects 1 }
    
f3HttpsSslKeyPair  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the SSL certificate/private key pair used for HTTPS."
    ::= { f3SslCertificateObjects 2 }

f3SslCertificateAction  OBJECT-TYPE
    SYNTAX      SslCertificateAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the action to take on SSL certificate objects."
    ::= { f3SslCertificateObjects 3 }

f3SslCertificateActionPairName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the name of the SSL Certificate/Private Key pair to delete or set for HTTPS."
    ::= { f3SslCertificateObjects 4 }

f3SslCertificateActionKeyName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the name of the Certificate/Private Key pair to add."
    ::= { f3SslCertificateObjects 6 }

--
--  SSL Certificate Private Key Pair Table
--
f3SslCertificatePrivateKeyPairTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3SslCertificatePrivateKeyPairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of entries for the SSL Certificate/Private Key Pairs."
    ::= { f3SslCertificateObjects 5 }   

f3SslCertificatePrivateKeyPairEntry  OBJECT-TYPE
    SYNTAX      F3SslCertificatePrivateKeyPairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3SslCertificatePrivateKeyPairTable."
    INDEX { f3SslCertificatePrivateKeyPairName }
    ::= { f3SslCertificatePrivateKeyPairTable 1 }

F3SslCertificatePrivateKeyPairEntry ::= SEQUENCE {
    f3SslCertificatePrivateKeyPairName                  DisplayString,
    f3SslCertificatePrivateKeyPairSslCertificate        DisplayString,
    f3SslCertificatePrivateKeyPairPrivateKeyPresent     TruthValue,
    f3SslCertificatePrivateKeyPairRsaKeyPairName        DisplayString,
    f3SslCertificatePrivateKeyPairCertificateType       CertificateType,
    f3SslCertificatePrivateKeyPairCertificateStatus     CertificateStatus,
    f3SslCertificatePrivateKeyPairAction                SslCertificatePrivateKeyPairAction
}

f3SslCertificatePrivateKeyPairName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "This is a unique name for the key pair."
    ::= { f3SslCertificatePrivateKeyPairEntry 1 }

f3SslCertificatePrivateKeyPairSslCertificate OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..4096))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the contents of the SSL certificate."
    ::= { f3SslCertificatePrivateKeyPairEntry 2 }

f3SslCertificatePrivateKeyPairPrivateKeyPresent OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This indicates that a private key is present in the key pair."
    ::= { f3SslCertificatePrivateKeyPairEntry 3 }

f3SslCertificatePrivateKeyPairRsaKeyPairName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the Rsa key of the SSL certificate."
    ::= { f3SslCertificatePrivateKeyPairEntry 4 }

f3SslCertificatePrivateKeyPairCertificateType OBJECT-TYPE
    SYNTAX      CertificateType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the SSL certificate type."
    ::= { f3SslCertificatePrivateKeyPairEntry 5 }

f3SslCertificatePrivateKeyPairCertificateStatus OBJECT-TYPE
    SYNTAX      CertificateStatus
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the SSL certificate status."
    ::= { f3SslCertificatePrivateKeyPairEntry 6 }

f3SslCertificatePrivateKeyPairAction OBJECT-TYPE
    SYNTAX      SslCertificatePrivateKeyPairAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
           "This is the SSL Certificate/Private Key Pair Action."
    ::= { f3SslCertificatePrivateKeyPairEntry 7 }

-- 
-- RSA Key Pair Objects
--

f3RsaKeyPairAction  OBJECT-TYPE
    SYNTAX      RsaKeyPairAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the action to RSA key pair."
    ::= { f3RsaKeyPairObjects 1 }

f3RsaKeyPairActionName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the name of RSA key pair action."
    ::= { f3RsaKeyPairObjects 2 }

f3RsaKeyPairActionLength  OBJECT-TYPE
    SYNTAX      RsaKeyLengthType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the length of RSA key pair action."
    ::= { f3RsaKeyPairObjects 3 }

-- 
-- RSA Key Pair Table
--

f3RsaKeyPairTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3RsaKeyPairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of RSA key pairs."
    ::= { f3RsaKeyPairObjects 4 }

f3RsaKeyPairEntry  OBJECT-TYPE
    SYNTAX      F3RsaKeyPairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3RsaKeyPairTable."
    INDEX { f3RsaKeyPairName }
    ::= { f3RsaKeyPairTable 1 }

F3RsaKeyPairEntry ::= SEQUENCE {
    f3RsaKeyPairName                  DisplayString,
    f3RsaKeyPairPublicKey             DisplayString
}

f3RsaKeyPairName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "This is a unique name for the key pair."
    ::= { f3RsaKeyPairEntry 1 }

f3RsaKeyPairPublicKey OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..4096))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is a public key."
    ::= { f3RsaKeyPairEntry 2 }

-- 
-- CSR Objects
--

f3CsrAction  OBJECT-TYPE
    SYNTAX      CsrAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the action to CSR."
    ::= { f3CertSigningRequestObjects 1 }

f3CsrActionCsrName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the name of CSR action."
    ::= { f3CertSigningRequestObjects 2 }
    
f3CsrActionRsaKeyName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the RSA key name of CSR action."
    ::= { f3CertSigningRequestObjects 3 }

f3CsrActionCountry  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the country of CSR action."
    ::= { f3CertSigningRequestObjects 4 }
    
f3CsrActionState  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the state of CSR action."
    ::= { f3CertSigningRequestObjects 5 }
    
f3CsrActionLocality  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the locality of CSR action."
    ::= { f3CertSigningRequestObjects 6 }
    
f3CsrActionOrganization  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the organization of CSR action."
    ::= { f3CertSigningRequestObjects 7 }
    
f3CsrActionOrganizationUnit  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the organization unit of CSR action."
    ::= { f3CertSigningRequestObjects 8 }

f3CsrActionCommonName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the common name of CSR action."
    ::= { f3CertSigningRequestObjects 9 }
    
f3CsrActionEmail  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the email of CSR action."
    ::= { f3CertSigningRequestObjects 10 }
    
f3CsrActionSerialNumber  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the serial number of CSR action."
    ::= { f3CertSigningRequestObjects 11 }
    
f3CsrActionAlternativeName  OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..256))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
         "This is the alternative name of CSR action."
    ::= { f3CertSigningRequestObjects 12 }

-- 
-- CSR Table
--

f3CertSigningRequestTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3CertSigningRequestEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of CSR."
    ::= { f3CertSigningRequestObjects 13 }

f3CertSigningRequestEntry  OBJECT-TYPE
    SYNTAX      F3CertSigningRequestEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3CertSigningRequestTable."
    INDEX { f3CertSigningRequestName }
    ::= { f3CertSigningRequestTable 1 }

F3CertSigningRequestEntry ::= SEQUENCE {
    f3CertSigningRequestName                  DisplayString,
    f3CertSigningRequestRsaKeyPairName        DisplayString,
    f3CertSigningRequestCsrData               DisplayString,
    f3CertSigningRequestAutoEnrollmentStatus  AutoEnrollmentStatus
}

f3CertSigningRequestName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "This is a unique name for CSR."
    ::= { f3CertSigningRequestEntry 1 }

f3CertSigningRequestRsaKeyPairName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the Key pair name."
    ::= { f3CertSigningRequestEntry 2 }

f3CertSigningRequestCsrData OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..4096))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the CSR data."
    ::= { f3CertSigningRequestEntry 3 }

f3CertSigningRequestAutoEnrollmentStatus OBJECT-TYPE
    SYNTAX      AutoEnrollmentStatus
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
           "This is the auto enrollment status."
    ::= { f3CertSigningRequestEntry 4 }


--
-- Table definitions.
--

--
-- Security User Table 
--
cmSecurityUserTable OBJECT-TYPE
    SYNTAX     SEQUENCE OF CmSecurityUserEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "A list of entries corresponding to the security users. 
             Entries cannot be created in this table by management
             application action."
    ::= { cmSecurityObjects 5 }


cmSecurityUserEntry OBJECT-TYPE
    SYNTAX     CmSecurityUserEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry containing information applicable to a particular
             security user."
    INDEX { cmSecurityUserName, cmSecurityUserRemoteUser }
    ::= { cmSecurityUserTable 1 }


CmSecurityUserEntry ::= SEQUENCE {
    cmSecurityUserName                     DisplayString,
    cmSecurityUserComment                  DisplayString,
    cmSecurityUserPrivLevel                CmSecurityPrivLevel,
    cmSecurityUserLoginTimeout             Integer32,
    cmSecurityUserNumFailedLoginAttempts   Integer32,
    cmSecurityUserLastLoginTime            DateAndTime,
    cmSecurityUserLockedout                TruthValue,
    cmSecurityUserLastLockedoutTime        DateAndTime,
    cmSecurityUserCliPagingEnable          TruthValue,
    cmSecurityUserRemoteUser               TruthValue,
    cmSecurityUserPassword                 DisplayString,
    cmSecurityUserStorageType              StorageType,   
    cmSecurityUserRowStatus                RowStatus,
    cmSecurityUserAction                   SecurityUserAction,
    cmSecurityCryptoPassword               DisplayString,
    cmSecurityUserRemoteCryptoUser         TruthValue,
    cmSecurityUserSso2fa                   TruthValue
}

cmSecurityUserName OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (1..32)) 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Security User Name."
     ::= { cmSecurityUserEntry 1 }

cmSecurityUserComment OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (0..128)) 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Notes on Security User."
     ::= { cmSecurityUserEntry 2 }

cmSecurityUserPrivLevel OBJECT-TYPE
    SYNTAX     CmSecurityPrivLevel 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Security User Privilege Level."
     ::= { cmSecurityUserEntry 3 }

cmSecurityUserLoginTimeout OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Security User Login Timeout."
     ::= { cmSecurityUserEntry 4 }

cmSecurityUserNumFailedLoginAttempts OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Security User Number of Failed Login Attempts."
     ::= { cmSecurityUserEntry 5 }

cmSecurityUserLastLoginTime OBJECT-TYPE
    SYNTAX     DateAndTime 
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Security User Last Login Time."
     ::= { cmSecurityUserEntry 6 }

cmSecurityUserLockedout OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Whether the security user has been locked out."
     ::= { cmSecurityUserEntry 7 }

cmSecurityUserLastLockedoutTime OBJECT-TYPE
    SYNTAX     DateAndTime 
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Security User Last Locked out Time."
     ::= { cmSecurityUserEntry 8 }

cmSecurityUserCliPagingEnable OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Whether the security user has CLI paging enabled."
     ::= { cmSecurityUserEntry 9 }

cmSecurityUserRemoteUser OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Whether the security user is a remote user."
     ::= { cmSecurityUserEntry 10 }

cmSecurityUserPassword OBJECT-TYPE
    SYNTAX     DisplayString (SIZE (0..32)) 
    MAX-ACCESS read-create 
    STATUS     current
    DESCRIPTION
         "Password of the security user. 
          Note that this attribute is a SET only attribute."
     ::= { cmSecurityUserEntry 11 }

cmSecurityUserStorageType OBJECT-TYPE
    SYNTAX     StorageType
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
            "The type of storage configured for this entry."
    ::= { cmSecurityUserEntry 12 }

cmSecurityUserRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The status of this row.
            An entry MUST NOT exist in the active state unless all
            objects in the entry have an appropriate value, as described
            in the description clause for each writable object.

            The values of cmSecurityUserRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            cmSecurityUserRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).

            The cmSecurityUserRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { cmSecurityUserEntry 13 }

cmSecurityUserAction OBJECT-TYPE
    SYNTAX     SecurityUserAction
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
            "This object provides ability to perform specific actions on security user.
                 remove-lockout - this removes the locked out condition on the security user
            ." 
    ::= { cmSecurityUserEntry 14 }

cmSecurityCryptoPassword OBJECT-TYPE
    SYNTAX     DisplayString (SIZE (0..32)) 
    MAX-ACCESS read-create 
    STATUS     current
    DESCRIPTION
         "Second level password used in connectguard configurations.
          This applies only to crypto users.
          Note that this attribute is a SET only attribute."
     ::= { cmSecurityUserEntry 15 }

cmSecurityUserRemoteCryptoUser OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "Indicates if a security user is a remote crypto user."
     ::= { cmSecurityUserEntry 16 }

cmSecurityUserSso2fa OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
         "If enabled, user can be used to bypass remote authentication if
          cmSso2faControl is enabled. This parameter can only be set on user creation"
     ::= { cmSecurityUserEntry 17 }

--
-- Remote Authentication Server Table 
--
cmRemoteAuthServerTable OBJECT-TYPE
    SYNTAX     SEQUENCE OF CmRemoteAuthServerEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "A list of entries corresponding to the remote authentication 
             servers.
             Entries cannot be created in this table by management
             application action."
    ::= { cmSecurityObjects 6 }


cmRemoteAuthServerEntry OBJECT-TYPE
    SYNTAX     CmRemoteAuthServerEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry containing information applicable to a particular
             remote authentication server."
    INDEX { cmRemoteAuthServerIndex }
    ::= { cmRemoteAuthServerTable 1 }


CmRemoteAuthServerEntry ::= SEQUENCE {
    cmRemoteAuthServerIndex              Integer32,
    cmRemoteAuthServerEnabled            TruthValue,
    cmRemoteAuthServerOrder              CmRemoteAuthOrder,
    cmRemoteAuthServerIpAddress          IpAddress,
    cmRemoteAuthServerPort               Integer32,
    cmRemoteAuthServerNumRetries         Integer32,
    cmRemoteAuthServerTimeout            Integer32,
    cmRemoteAuthServerSecret             DisplayString,
    cmRemoteAuthServerAccountingPort     Integer32,
    cmRemoteAuthServerIpVersion          IpVersion,
    cmRemoteAuthServerIpv6Addr           Ipv6Address
}

cmRemoteAuthServerIndex OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "Unique index to address/configure a specific Remote 
          Authentication Server."
     ::= { cmRemoteAuthServerEntry 1 }

cmRemoteAuthServerEnabled OBJECT-TYPE
    SYNTAX     TruthValue 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows enabling/disabling a Remote Authentication Server."
     ::= { cmRemoteAuthServerEntry 2 }

cmRemoteAuthServerOrder OBJECT-TYPE
    SYNTAX     CmRemoteAuthOrder 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object determines the order in which the Remote 
          Authentication Servers are accessed for security information."
     ::= { cmRemoteAuthServerEntry 3 }

cmRemoteAuthServerIpAddress OBJECT-TYPE
    SYNTAX     IpAddress 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to specify an IP Address for the Remote
          Authentication Server."
     ::= { cmRemoteAuthServerEntry 4 }

cmRemoteAuthServerPort OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to specify a Port for Remote Authentication
          Server."
     ::= { cmRemoteAuthServerEntry 5 }

cmRemoteAuthServerNumRetries OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to specify the number of retries the Remote 
          Authentication Server must be tried for security access before
          giving up."
     ::= { cmRemoteAuthServerEntry 6 }

cmRemoteAuthServerTimeout OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to specify the timeout period for timing
          out a security access request to the Remote Authentication Server."
     ::= { cmRemoteAuthServerEntry 7 }

cmRemoteAuthServerSecret OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (0..128)) 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This allows configuration of secret password for Remote 
          Authentication Server request."
     ::= { cmRemoteAuthServerEntry 8 }

cmRemoteAuthServerAccountingPort OBJECT-TYPE
    SYNTAX     Integer32 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object allows to specify a Port for RADIUS Accounting." 
     ::= { cmRemoteAuthServerEntry 9 }

cmRemoteAuthServerIpVersion OBJECT-TYPE
    SYNTAX     IpVersion 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object describe the Ip Version." 
     ::= { cmRemoteAuthServerEntry 10 }

cmRemoteAuthServerIpv6Addr OBJECT-TYPE
    SYNTAX     Ipv6Address 
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
         "This object describe the Ipv6 Address." 
     ::= { cmRemoteAuthServerEntry 11 }

--
-- USM User Extension Table 
--
f3UsmUserTable OBJECT-TYPE
    SYNTAX     SEQUENCE OF F3UsmUserEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "This table is the extension of the F3 USM User Table."
    ::= { cmSecurityObjects 9 }

f3UsmUserEntry OBJECT-TYPE
    SYNTAX     F3UsmUserEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry in the F3 USM User Table." 
    AUGMENTS { usmUserEntry }
    ::= { f3UsmUserTable 1 }

F3UsmUserEntry ::= SEQUENCE {
    f3UsmUserAccessType       UsmUserAccessType
}

f3UsmUserAccessType OBJECT-TYPE
    SYNTAX     UsmUserAccessType
    MAX-ACCESS read-only
    STATUS     current
    DESCRIPTION
         "This indicates the type of USM User, read-only, read-write, trap-only."
     ::= { f3UsmUserEntry 1 }

f3PrivilegeChangeTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3PrivilegeChangeEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "This table is used for Restricted User Login via NMS.
         This is for users with lower privileges to elevate them to higher ones for limited amount of time."
    ::=  { cmSecurityObjects 15 }

f3PrivilegeChangeEntry OBJECT-TYPE
    SYNTAX      F3PrivilegeChangeEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Column for privilegeChangeTable."
    INDEX       { f3PrivilegeChangeId }
    ::=  { f3PrivilegeChangeTable 1 }

F3PrivilegeChangeEntry ::= SEQUENCE {
    f3PrivilegeChangeId                   Unsigned32,
    f3PrivilegeChangeUserName             SnmpAdminString,
    f3PrivilegeChangeIpv4Address          IpAddress,
    f3PrivilegeChangeIpv6Address          Ipv6Address,
    f3PrivilegeChangeTerminalIpv4Address  IpAddress,
    f3PrivilegeChangeTerminalIpv6Address  Ipv6Address,
    f3PrivilegeChangeInterface            UserInterfaceType,
    f3PrivilegeChangeCurrentPrivilege     CmSecurityPrivLevel,
    f3PrivilegeChangeRequestedPrivilege   CmSecurityPrivLevel,
    f3PrivilegeChangeDuration             Unsigned32,
    f3PrivilegeChangeAction               PrivilegeRequestAction,
    f3PrivilegeChangeState                PrivilegeRequestState,
    f3PrivilegeChangeRemainingTime        Unsigned32,
    f3PrivilegeChangeRemoteName           SnmpAdminString 
}

f3PrivilegeChangeId OBJECT-TYPE
    SYNTAX      Unsigned32 (1..4294967295)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Unique index identifying a request."
    ::=  { f3PrivilegeChangeEntry 1 }

f3PrivilegeChangeUserName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The name string for user authentication purposes" 
    ::=  { f3PrivilegeChangeEntry 2 }

f3PrivilegeChangeIpv4Address OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "IPv4 address of interface to which user's terminal is connected."
    ::=  { f3PrivilegeChangeEntry 3 }

f3PrivilegeChangeIpv6Address OBJECT-TYPE
    SYNTAX      Ipv6Address
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "IPv6 address of interface to which user's terminal is connected."
    ::=  { f3PrivilegeChangeEntry 4 }

f3PrivilegeChangeTerminalIpv4Address OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Source IPv4 address of connected terminal."
    ::=  { f3PrivilegeChangeEntry 5 }

f3PrivilegeChangeTerminalIpv6Address OBJECT-TYPE
    SYNTAX      Ipv6Address
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Source IPv6 address of connected terminal."
    ::=  { f3PrivilegeChangeEntry 6 }

f3PrivilegeChangeInterface OBJECT-TYPE
    SYNTAX      UserInterfaceType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Interface used by the user" 
    ::=  { f3PrivilegeChangeEntry 7 }

f3PrivilegeChangeCurrentPrivilege OBJECT-TYPE
    SYNTAX      CmSecurityPrivLevel
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Current privilege level of the user, who is requesting role upgrade." 
    ::=  { f3PrivilegeChangeEntry 8 }

f3PrivilegeChangeRequestedPrivilege OBJECT-TYPE
    SYNTAX      CmSecurityPrivLevel
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Privilege requested by user for session." 
    ::=  { f3PrivilegeChangeEntry 9 }

f3PrivilegeChangeDuration OBJECT-TYPE
    SYNTAX      Unsigned32 (1..480) 
    UNITS       "minutes"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Requested time period by user (in minutes)."
    ::=  { f3PrivilegeChangeEntry 10 }

f3PrivilegeChangeAction OBJECT-TYPE
    SYNTAX      PrivilegeRequestAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "Privilege request action." 
    ::=  { f3PrivilegeChangeEntry 11 }

f3PrivilegeChangeState OBJECT-TYPE
    SYNTAX      PrivilegeRequestState
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Privilege request state." 
    ::=  { f3PrivilegeChangeEntry 12 }

f3PrivilegeChangeRemainingTime OBJECT-TYPE
    SYNTAX      Unsigned32 
    UNITS       "seconds"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Time remaining in session with upgrade user privilege (in seconds)." 
    ::=  { f3PrivilegeChangeEntry 13 }

f3PrivilegeChangeRemoteName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The name string for Radius/Tacacs authentication purposes."
    ::=  { f3PrivilegeChangeEntry 14 }

-- 
-- CA Profile Table
--

f3CaProfileTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3CaProfileEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of Certificate Authority Profiles."
    ::= { cmSecurityObjects 29 }

f3CaProfileEntry  OBJECT-TYPE
    SYNTAX      F3CaProfileEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3CaProfileTable."
    INDEX { f3CaProfileIndex }
    ::= { f3CaProfileTable 1 }

F3CaProfileEntry ::= SEQUENCE {
    f3CaProfileIndex                       Unsigned32,
    f3CaProfileName                        DisplayString,
    f3CaProfileEnrollmentProtocol          CertificateEnrollmentProtocol,
    f3CaProfileHttpPort                    Unsigned32,
    f3CaProfileAutoRenewalControl          TruthValue,
    f3CaProfileRenewalPercentLifetime      Unsigned32,
    f3CaProfileRenewalNewKeyPairGenControl TruthValue,
    f3CaProfileStorageType                 StorageType,
    f3CaProfileRowStatus                   RowStatus
}

f3CaProfileIndex OBJECT-TYPE
    SYNTAX      Unsigned32 (1..4)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "An integer index used to identify this CA Profile."
    ::= { f3CaProfileEntry 1 }

f3CaProfileName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This object provides name for this CA Profile."
    ::= { f3CaProfileEntry 2 }

f3CaProfileEnrollmentProtocol OBJECT-TYPE
    SYNTAX      CertificateEnrollmentProtocol
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This object allows to specify type of protocol used for
            automatic certificate enrollment."
    DEFVAL { scep }
    ::= { f3CaProfileEntry 3 }

f3CaProfileHttpPort OBJECT-TYPE
    SYNTAX      Unsigned32 (1..65535)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This obect allows to specify TCP port number used by 
            enrollment protocol."
    DEFVAL { 80 }
    ::= { f3CaProfileEntry 4 }

f3CaProfileAutoRenewalControl OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This obect allows to specify whether the client 
            certificate is automatically renewed or re-enrolled."
    DEFVAL { true }
    ::= { f3CaProfileEntry 5 }

f3CaProfileRenewalPercentLifetime OBJECT-TYPE
    SYNTAX      Unsigned32 (1..100)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This obect allows to specify percentage of certificate 
            lifetime at which point the automatic certificate 
            renewal process begins."
    DEFVAL { 75 }
    ::= { f3CaProfileEntry 6 }

f3CaProfileRenewalNewKeyPairGenControl OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "This obect allows to specify if the RSA key pair is 
            regenerated prior to each certificate renewal."
    DEFVAL { false }
    ::= { f3CaProfileEntry 7 }

f3CaProfileStorageType OBJECT-TYPE
    SYNTAX      StorageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The type of storage configured for this entry."
    ::= { f3CaProfileEntry 8 }
    
f3CaProfileRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The status of this row.
            An entry MUST NOT exist in the active state unless all
            objects in the entry have an appropriate value, as described
            in the description clause for each writable object.
        
            The values of f3CaProfileRowStatus supported are
            createAndGo(4) and destroy(6). All mandatory attributes
            must be specified in a single SNMP SET request with
            f3CaProfileRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).
        
            The f3CaProfileRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3CaProfileEntry 9 }


f3CaTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3CaEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A list of Certificate Authority object used for certificate 
         enrollment with CA."
   ::= { cmSecurityObjects 30 }

f3CaEntry OBJECT-TYPE
    SYNTAX      F3CaEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The conceptual row in f3CaTable."
    INDEX   { f3CaName }

   ::= { f3CaTable 1 }

F3CaEntry ::= SEQUENCE {
    f3CaName                    DisplayString,
    f3CaProfile                 VariablePointer,
    f3CaUrl                     DisplayString,
    f3CaCertList                DisplayString,
    f3CaRootCertStatus          CaRootCertStatus,
    f3CaLastCsr                 DisplayString,
    f3CaAction                  CaAction,
    f3CaActionCsrName           DisplayString,
    f3CaActionChallengePassword DisplayString,
    f3CaStorageType             StorageType,
    f3CaRowStatus               RowStatus
}

f3CaName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Unique name used to identify this CA."
   ::= { f3CaEntry 1 }

f3CaProfile OBJECT-TYPE
    SYNTAX      VariablePointer
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This object provides a pointer to CA Profile used for this CA."
   ::= { f3CaEntry 2 }

f3CaUrl OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..256))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This object provides the URL for certificate enrollment with CA."
   ::= { f3CaEntry 3 }

f3CaScepQueryMessage OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..512))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This object provides the SCEP Query Message for certificate
         enrollment with CA."
   ::= { f3CaEntry 4 }

f3CaCertList OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..256))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This object provides list of CA certificates sent by the CA as
         the chain of trust."
   ::= { f3CaEntry 5 }

f3CaRootCertStatus OBJECT-TYPE
    SYNTAX      CaRootCertStatus
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This object provides CA root certificate status."
   ::= { f3CaEntry 6 }

f3CaLastCsr OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "This object provides last CSR name in an enrollment process."
   ::= { f3CaEntry 7 }

f3CaAction OBJECT-TYPE
    SYNTAX      CaAction
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object specifies a CA Action."
   ::= { f3CaEntry 8 }

f3CaActionCsrName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (1..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object specifies a CSR Name.
         Applicable to startAutoEnrollment action."
   ::= { f3CaEntry 9 }

f3CaActionChallengePassword OBJECT-TYPE
    SYNTAX      DisplayString (SIZE (0..64))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "This object specifies a challenge password.
         Applicable to startAutoEnrollment action."
   ::= { f3CaEntry 10 }

f3CaStorageType OBJECT-TYPE
    SYNTAX     StorageType
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
            "The type of storage configured for this entry."
    ::= { f3CaEntry 11 }

f3CaRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The status of this row.
            An entry MUST NOT exist in the active state unless all
            objects in the entry have an appropriate value, as described
            in the description clause for each writable object.

            The values of f3CaRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            f3CaRowStatus value as createAndGo(4).
            Upon successful row creation, this variable has a
            value of active(1).

            The f3CaRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3CaEntry 12 }


---
---Notifications
---
f3SecurityTrap NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
            "This is security trap. Security traps are reported
             according to value of f3SecurityTrapType object."
  ::= { cmSecurityNotifications 1 }

f3PrivilegeChangeTrap NOTIFICATION-TYPE 
    OBJECTS     { f3PrivilegeChangeState,
                  f3PrivilegeChangeUserName,
                  f3PrivilegeChangeIpv4Address,
                  f3PrivilegeChangeIpv6Address,
                  f3PrivilegeChangeTerminalIpv4Address,
                  f3PrivilegeChangeTerminalIpv6Address,
                  f3PrivilegeChangeInterface,
                  f3PrivilegeChangeCurrentPrivilege,
                  f3PrivilegeChangeRequestedPrivilege,
                  f3PrivilegeChangeDuration
                } 
    STATUS      current
    DESCRIPTION   "This trap is sent every time a privilege change request is changed (added, modified, removed)."
    ::=  { cmSecurityNotifications 2 }
--
-- Conformance
--
cmSecurityCompliances OBJECT IDENTIFIER ::= {cmSecurityConformance 1}
cmSecurityGroups      OBJECT IDENTIFIER ::= {cmSecurityConformance 2}

cmSecurityCompliance MODULE-COMPLIANCE
    STATUS  current
    DESCRIPTION
            "Describes the requirements for conformance to the CM Security
             group."
    MODULE  -- this module
        MANDATORY-GROUPS {
              cmSecurityObjectGroup
        }
    ::= { cmSecurityCompliances 1 }

cmSecurityObjectGroup OBJECT-GROUP
    OBJECTS {
        cmAuthProtocol, cmAccessOrder, cmAuthType, cmNASIpAddress,
        cmSecurityPolicyStrength, cmRemoteAuthServerAccountingEnabled,
        cmAnonymizeLogTimeInDays, f3Sso2faControl, f3NasIpAddressType,
        f3SshCipherStrengthHighControl,

        f3TacacsPrivLevelControlEnabled, f3TacacsDefaultPrivLevel,
        f3NasIpv6Addr, f3SecurityTrapType, f3SecurityTrapInfo,

        cmSecurityUserName, cmSecurityUserComment, cmSecurityUserPrivLevel,
        cmSecurityUserLoginTimeout, cmSecurityUserNumFailedLoginAttempts,
        cmSecurityUserLastLoginTime, cmSecurityUserLockedout,
        cmSecurityUserLastLockedoutTime, cmSecurityUserCliPagingEnable,
        cmSecurityUserRemoteUser, cmSecurityUserPassword,
        cmSecurityUserStorageType, cmSecurityUserRowStatus, 
        cmSecurityUserAction, cmSecurityCryptoPassword,
        cmSecurityUserRemoteCryptoUser, cmSecurityUserSso2fa,

        cmRemoteAuthServerIndex, cmRemoteAuthServerEnabled,
        cmRemoteAuthServerOrder, cmRemoteAuthServerIpAddress,
        cmRemoteAuthServerPort, cmRemoteAuthServerNumRetries,
        cmRemoteAuthServerTimeout, cmRemoteAuthServerSecret,
        cmRemoteAuthServerAccountingPort, cmRemoteAuthServerIpVersion,
        cmRemoteAuthServerIpv6Addr,

        f3UsmUserAccessType,

        f3PrivilegeChangeUserName,
        f3PrivilegeChangeIpv4Address, f3PrivilegeChangeIpv6Address,
        f3PrivilegeChangeTerminalIpv4Address, f3PrivilegeChangeTerminalIpv6Address,
        f3PrivilegeChangeInterface, f3PrivilegeChangeCurrentPrivilege,
        f3PrivilegeChangeRequestedPrivilege, f3PrivilegeChangeDuration,
        f3PrivilegeChangeAction, f3PrivilegeChangeState, f3PrivilegeChangeRemainingTime,
        f3PrivilegeChangeRemoteName, f3RadiusSendVendorAvpEnabled, f3RadiusRealm,
        
        icmpV4Filter, icmpV4DropEchoRequests,
        icmpV6Filter, icmpV6DropEchoRequests, icmpV6DropNeighborSolicitation,
        icmpV6DropRouterAdvertisement, icmpV6DropNeighborAdvertisement, 
        icmpV6DropRouterSolicitation,        
        f3FipsOperationMode,
        f3FipsSecuritySelfTestFailureCount,
        f3FipsSecuritySelfTestResult,
        f3FipsSecuritySelfTestStatus,
        f3FipsAction,
        
        f3HttpsSslCertExpNotifPeriod,
        f3HttpsSslKeyPair,
        f3SslCertificateAction,
        f3SslCertificateActionPairName,
        f3SslCertificatePrivateKeyPairName,
        f3SslCertificatePrivateKeyPairSslCertificate,
        f3SslCertificatePrivateKeyPairPrivateKeyPresent,
        
        f3RsaKeyPairName, f3RsaKeyPairPublicKey,
        f3RsaKeyPairAction, f3RsaKeyPairActionName, f3RsaKeyPairActionLength,
        f3CsrAction, f3CsrActionCsrName, f3CsrActionRsaKeyName,
        f3CsrActionCountry, f3CsrActionState, f3CsrActionLocality,
        f3CsrActionOrganization, f3CsrActionOrganizationUnit,
        f3CsrActionCommonName, f3CsrActionEmail,
        f3CsrActionSerialNumber, f3CsrActionAlternativeName,
        f3CertSigningRequestName, f3CertSigningRequestRsaKeyPairName,
        f3CertSigningRequestCsrData, f3CertSigningRequestAutoEnrollmentStatus,
        f3SslCertificatePrivateKeyPairRsaKeyPairName,
        f3SslCertificatePrivateKeyPairCertificateType,
        f3SslCertificatePrivateKeyPairCertificateStatus,
        f3SslCertificatePrivateKeyPairAction,
        f3SslCertificateActionKeyName,
        
        f3CaProfileName, f3CaProfileEnrollmentProtocol, f3CaProfileHttpPort,
        f3CaProfileAutoRenewalControl, f3CaProfileRenewalPercentLifetime,
        f3CaProfileRenewalNewKeyPairGenControl,
        f3CaProfileStorageType, f3CaProfileRowStatus,
        f3CaProfile, f3CaScepQueryMessage, f3CaUrl, f3CaCertList, f3CaRootCertStatus,
        f3CaLastCsr, f3CaAction, f3CaActionCsrName, f3CaActionChallengePassword,
        f3CaStorageType, f3CaRowStatus
    }
    STATUS  current
    DESCRIPTION
            "A collection of objects used to manage the CM Security
             group."
    ::= { cmSecurityGroups 1 }

cmSecurityNotifGroup NOTIFICATION-GROUP
    NOTIFICATIONS {
        f3SecurityTrap
    }
    STATUS  current
    DESCRIPTION
            "A collection of notifications used in the CM Security
              group."
    ::= { cmSecurityGroups 2 }

END