mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
01.27.2007 4783adc14c2d6b96260052d3b634eafa500c6ddf
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
# This file contains the primary Directory Server configuration.  It must not
# be directly edited while the server is online.  The server configuration
# should only be managed using the administration utilities provided with the
# Directory Server.
dn: cn=config
objectClass: top
objectClass: ds-cfg-root-config
ds-cfg-invalid-attribute-syntax-behavior: reject
ds-cfg-bind-with-dn-requires-password: true
ds-cfg-single-structural-objectclass-behavior: reject
ds-cfg-check-schema: true
ds-cfg-allow-attribute-name-exceptions: false
ds-cfg-default-password-policy: cn=Default Password Policy,cn=Password Policies,cn=config
ds-cfg-proxied-authorization-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
ds-cfg-lookthrough-limit: 5000
ds-cfg-time-limit: 60 seconds
ds-cfg-writability-mode: enabled
ds-cfg-add-missing-rdn-attributes: true
ds-cfg-notify-abandoned-operations: true
ds-cfg-reject-unauthenticated-requests: false
cn: config
ds-cfg-size-limit: 1000
modifiersName: cn=Privileged User,o=test
modifyTimestamp: 20070301011016Z
 
dn: cn=Access Control Handler,cn=config
objectClass: ds-cfg-access-control-handler
objectClass: top
ds-cfg-acl-handler-enabled: false
ds-cfg-acl-handler-class: org.opends.server.authorization.dseecompat.AciProvider
cn: Access Control Handler
 
dn: cn=Account Status Notification Handlers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Account Status Notification Handlers
 
dn: cn=Error Log Handler,cn=Account Status Notification Handlers,cn=config
objectClass: ds-cfg-account-status-notification-handler
objectClass: top
objectClass: ds-cfg-error-log-account-status-notification-handler
ds-cfg-account-status-notification-handler-class: org.opends.server.extensions.ErrorLogAccountStatusNotificationHandler
ds-cfg-account-status-notification-handler-enabled: true
ds-cfg-account-status-notification-type: account-temporarily-locked
ds-cfg-account-status-notification-type: account-permanently-locked
ds-cfg-account-status-notification-type: account-unlocked
ds-cfg-account-status-notification-type: account-idle-locked
ds-cfg-account-status-notification-type: account-reset-locked
ds-cfg-account-status-notification-type: account-disabled
ds-cfg-account-status-notification-type: account-enabled
ds-cfg-account-status-notification-type: account-expired
ds-cfg-account-status-notification-type: password-expired
ds-cfg-account-status-notification-type: password-expiring
ds-cfg-account-status-notification-type: password-reset
ds-cfg-account-status-notification-type: password-changed
cn: Error Log Handler
 
dn: cn=Alert Handlers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Alert Handlers
 
dn: cn=JMX Alert Handler,cn=Alert Handlers,cn=config
objectClass: top
objectClass: ds-cfg-alert-handler
ds-cfg-alert-handler-enabled: true
cn: JMX Alert Handler
ds-cfg-alert-handler-class: org.opends.server.extensions.JMXAlertHandler
 
dn: cn=Backends,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Backends
 
dn: ds-cfg-backend-id=backup,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-backup-backend
objectClass: ds-cfg-backend
ds-cfg-backend-base-dn: cn=backups
ds-cfg-backend-id: backup
ds-cfg-backup-directory: bak
ds-cfg-backend-writability-mode: disabled
ds-cfg-backend-class: org.opends.server.backends.BackupBackend
ds-cfg-backend-enabled: true
 
dn: ds-cfg-backend-id=config,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-backend
ds-cfg-backend-base-dn: cn=config
ds-cfg-backend-id: config
ds-cfg-backend-writability-mode: enabled
ds-cfg-backend-class: org.opends.server.extensions.ConfigFileHandler
ds-cfg-backend-enabled: true
 
dn: ds-cfg-backend-id=monitor,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-backend
ds-cfg-backend-base-dn: cn=monitor
ds-cfg-backend-id: monitor
ds-cfg-backend-writability-mode: disabled
ds-cfg-backend-class: org.opends.server.backends.MonitorBackend
ds-cfg-backend-enabled: true
 
dn: ds-cfg-backend-id=schema,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-schema-backend
objectClass: ds-cfg-backend
ds-cfg-backend-base-dn: cn=schema
ds-cfg-backend-id: schema
ds-cfg-show-all-attributes: false
ds-cfg-backend-writability-mode: enabled
ds-cfg-backend-class: org.opends.server.backends.SchemaBackend
ds-cfg-backend-enabled: true
 
dn: ds-cfg-backend-id=tasks,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-backend
objectClass: ds-cfg-task-backend
ds-cfg-backend-base-dn: cn=tasks
ds-cfg-backend-id: tasks
ds-cfg-task-retention-time: 24 hours
ds-cfg-task-backing-file: config/tasks.ldif
ds-cfg-backend-writability-mode: enabled
ds-cfg-backend-class: org.opends.server.backends.task.TaskBackend
ds-cfg-backend-enabled: true
 
dn: ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: ds-cfg-je-backend
objectClass: top
objectClass: ds-cfg-backend
ds-cfg-backend-import-buffer-size: 256 megabytes
ds-cfg-backend-deadlock-retry-limit: 10
ds-cfg-backend-base-dn: dc=example,dc=com
ds-cfg-backend-id: userRoot
ds-cfg-backend-import-queue-size: 100
ds-cfg-backend-index-entry-limit: 4000
ds-cfg-backend-writability-mode: enabled
ds-cfg-backend-class: org.opends.server.backends.jeb.BackendImpl
ds-cfg-backend-subtree-delete-size-limit: 100000
ds-cfg-backend-directory: db
ds-cfg-backend-import-thread-count: 8
ds-cfg-backend-preload-time-limit: 0 seconds
ds-cfg-backend-import-pass-size: 0
ds-cfg-backend-entries-compressed: false
ds-cfg-backend-mode: 700
ds-cfg-backend-enabled: TRUE
ds-cfg-backend-import-temp-directory: importTmp
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301011024Z
 
dn: cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Index
 
dn: ds-cfg-index-attribute=aci,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-attribute: aci
 
dn: ds-cfg-index-attribute=cn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: cn
 
dn: ds-cfg-index-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: ordering
ds-cfg-index-attribute: ds-sync-hist
 
dn: ds-cfg-index-attribute=entryuuid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: entryuuid
 
dn: ds-cfg-index-attribute=givenName,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: givenName
 
dn: ds-cfg-index-attribute=mail,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: mail
 
dn: ds-cfg-index-attribute=member,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: member
 
dn: ds-cfg-index-attribute=objectClass,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: objectClass
 
dn: ds-cfg-index-attribute=sn,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: sn
 
dn: ds-cfg-index-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: telephoneNumber
 
dn: ds-cfg-index-attribute=uid,cn=Index,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: uid
 
dn: cn=JE Database,ds-cfg-backend-id=userRoot,cn=Backends,cn=config
objectClass: ds-cfg-je-database
objectClass: top
ds-cfg-database-lock-num-lock-tables: 19
ds-cfg-database-evictor-nodes-per-scan: 10
ds-cfg-database-logging-file-handler-on: true
ds-cfg-database-evictor-lru-only: true
ds-cfg-database-cache-percent: 10
ds-cfg-database-run-cleaner: true
ds-cfg-database-cleaner-min-utilization: 75
ds-cfg-database-checkpointer-wakeup-interval: 30 seconds
ds-cfg-database-cache-size: 0 megabytes
ds-cfg-database-checkpointer-bytes-interval: 20 megabytes
ds-cfg-database-log-file-max: 50 megabytes
ds-cfg-database-cleaner-num-threads: 1
ds-cfg-database-logging-level: CONFIG
cn: JE Database
ds-cfg-database-txn-no-sync: false
ds-cfg-database-txn-write-no-sync: true
 
dn: ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: ds-cfg-je-backend
objectClass: top
objectClass: ds-cfg-backend
ds-cfg-backend-import-buffer-size: 256 megabytes
ds-cfg-backend-deadlock-retry-limit: 10
ds-cfg-backend-base-dn: dc=verify, dc=jeb
ds-cfg-backend-id: verifyRoot
ds-cfg-backend-import-queue-size: 100
ds-cfg-backend-index-entry-limit: 10
ds-cfg-backend-writability-mode: enabled
ds-cfg-backend-class: org.opends.server.backends.jeb.BackendImpl
ds-cfg-backend-subtree-delete-size-limit: 100000
ds-cfg-backend-directory: db_verify
ds-cfg-backend-import-thread-count: 8
ds-cfg-backend-preload-time-limit: 0 seconds
ds-cfg-backend-import-pass-size: 0
ds-cfg-backend-entries-compressed: false
ds-cfg-backend-mode: 700
ds-cfg-backend-enabled: TRUE
ds-cfg-backend-import-temp-directory: importTmp
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010722Z
 
dn: cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Index
 
dn: ds-cfg-index-attribute=cn,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: cn
 
dn: ds-cfg-index-attribute=ds-sync-hist,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: ordering
ds-cfg-index-attribute: ds-sync-hist
 
dn: ds-cfg-index-attribute=entryuuid,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: entryuuid
 
dn: ds-cfg-index-attribute=givenName,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: givenName
 
dn: ds-cfg-index-attribute=mail,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-type: ordering
ds-cfg-index-attribute: mail
 
dn: ds-cfg-index-attribute=member,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: member
 
dn: ds-cfg-index-attribute=sn,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: sn
 
dn: ds-cfg-index-attribute=telephoneNumber,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: presence
ds-cfg-index-type: equality
ds-cfg-index-type: substring
ds-cfg-index-attribute: telephoneNumber
 
dn: ds-cfg-index-attribute=uid,cn=Index,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: top
objectClass: ds-cfg-je-index
ds-cfg-index-type: equality
ds-cfg-index-attribute: uid
 
dn: cn=JE Database,ds-cfg-backend-id=verifyRoot,cn=Backends,cn=config
objectClass: ds-cfg-je-database
objectClass: top
ds-cfg-database-lock-num-lock-tables: 19
ds-cfg-database-evictor-nodes-per-scan: 10
ds-cfg-database-logging-file-handler-on: true
ds-cfg-database-evictor-lru-only: true
ds-cfg-database-cache-percent: 10
ds-cfg-database-run-cleaner: true
ds-cfg-database-cleaner-min-utilization: 75
ds-cfg-database-checkpointer-wakeup-interval: 30 seconds
ds-cfg-database-cache-size: 0 megabytes
ds-cfg-database-checkpointer-bytes-interval: 20 megabytes
ds-cfg-database-log-file-max: 50 megabytes
ds-cfg-database-cleaner-num-threads: 1
ds-cfg-database-logging-level: CONFIG
cn: JE Database
ds-cfg-database-txn-no-sync: false
ds-cfg-database-txn-write-no-sync: true
 
dn: cn=Certificate Mappers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Certificate Mappers
 
dn: cn=Fingerprint Mapper,cn=Certificate Mappers,cn=config
objectClass: ds-cfg-fingerprint-certificate-mapper
objectClass: top
objectClass: ds-cfg-certificate-mapper
ds-cfg-certificate-mapper-class: org.opends.server.extensions.FingerprintCertificateMapper
ds-cfg-certificate-mapper-enabled: true
ds-cfg-certificate-fingerprint-attribute-type: ds-certificate-fingerprint
cn: Fingerprint Mapper
ds-cfg-certificate-fingerprint-algorithm: MD5
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010843Z
 
dn: cn=Subject Attribute to User Attribute,cn=Certificate Mappers,cn=config
objectClass: top
objectClass: ds-cfg-subject-attribute-to-user-attribute-certificate-mapper
objectClass: ds-cfg-certificate-mapper
ds-cfg-certificate-mapper-enabled: true
ds-cfg-certificate-mapper-class: org.opends.server.extensions.SubjectAttributeToUserAttributeCertificateMapper
ds-cfg-certificate-subject-attribute-mapping: cn:cn
ds-cfg-certificate-subject-attribute-mapping: e:mail
cn: Subject Attribute to User Attribute
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010846Z
 
dn: cn=Subject DN to User Attribute,cn=Certificate Mappers,cn=config
objectClass: ds-cfg-subject-dn-to-user-attribute-certificate-mapper
objectClass: top
objectClass: ds-cfg-certificate-mapper
ds-cfg-certificate-mapper-enabled: true
ds-cfg-certificate-mapper-class: org.opends.server.extensions.SubjectDNToUserAttributeCertificateMapper
cn: Subject DN to User Attribute
ds-cfg-certificate-subject-attribute-type: ds-certificate-subject-dn
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010846Z
 
dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
objectClass: top
objectClass: ds-cfg-certificate-mapper
ds-cfg-certificate-mapper-class: org.opends.server.extensions.SubjectEqualsDNCertificateMapper
ds-cfg-certificate-mapper-enabled: true
cn: Subject Equals DN
 
dn: cn=Connection Handlers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Connection Handlers
 
dn: cn=JMX Connection Handler,cn=Connection Handlers,cn=config
objectClass: top
objectClass: ds-cfg-connection-handler
objectClass: ds-cfg-jmx-connection-handler
ds-cfg-listen-port: 47147
ds-cfg-ssl-cert-nickname: server-cert
ds-cfg-connection-handler-class: org.opends.server.protocols.jmx.JmxConnectionHandler
cn: JMX Connection Handler
ds-cfg-use-ssl: false
ds-cfg-connection-handler-enabled: true
 
dn: cn=LDAP Connection Handler,cn=Connection Handlers,cn=config
objectClass: top
objectClass: ds-cfg-connection-handler
objectClass: ds-cfg-ldap-connection-handler
ds-cfg-trust-manager-provider-dn: cn=JKS,cn=Trust Manager Providers,cn=config
ds-cfg-use-tcp-nodelay: true
ds-cfg-use-tcp-keepalive: true
ds-cfg-ssl-client-auth-policy: optional
ds-cfg-allow-tcp-reuse-address: true
ds-cfg-use-ssl: false
ds-cfg-keep-stats: true
ds-cfg-listen-port: 47146
ds-cfg-send-rejection-notice: true
ds-cfg-allow-start-tls: true
ds-cfg-ssl-cert-nickname: server-cert
ds-cfg-connection-handler-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
ds-cfg-allow-ldapv2: true
ds-cfg-accept-backlog: 128
cn: LDAP Connection Handler
ds-cfg-key-manager-provider-dn: cn=JKS,cn=Key Manager Providers,cn=config
ds-cfg-num-request-handlers: 2
ds-cfg-listen-address: 0.0.0.0
ds-cfg-connection-handler-enabled: true
ds-cfg-max-request-size: 5 megabytes
 
dn: cn=LDAPS Connection Handler,cn=Connection Handlers,cn=config
objectClass: top
objectClass: ds-cfg-connection-handler
objectClass: ds-cfg-ldap-connection-handler
ds-cfg-trust-manager-provider-dn: cn=JKS,cn=Trust Manager Providers,cn=config
ds-cfg-use-tcp-nodelay: true
ds-cfg-use-tcp-keepalive: true
ds-cfg-ssl-client-auth-policy: optional
ds-cfg-allow-tcp-reuse-address: true
ds-cfg-use-ssl: true
ds-cfg-keep-stats: true
ds-cfg-listen-port: 47148
ds-cfg-send-rejection-notice: true
ds-cfg-allow-start-tls: false
ds-cfg-ssl-cert-nickname: server-cert
ds-cfg-connection-handler-class: org.opends.server.protocols.ldap.LDAPConnectionHandler
ds-cfg-allow-ldapv2: true
ds-cfg-accept-backlog: 128
cn: LDAPS Connection Handler
ds-cfg-key-manager-provider-dn: cn=JKS,cn=Key Manager Providers,cn=config
ds-cfg-num-request-handlers: 2
ds-cfg-listen-address: 0.0.0.0
ds-cfg-connection-handler-enabled: true
ds-cfg-max-request-size: 5 megabytes
 
dn: cn=Entry Cache,cn=config
objectClass: ds-cfg-soft-reference-entry-cache
objectClass: ds-cfg-entry-cache
objectClass: top
ds-cfg-entry-cache-class: org.opends.server.extensions.SoftReferenceEntryCache
ds-cfg-entry-cache-enabled: false
cn: Entry Cache
 
dn: cn=Extended Operations,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Extended Operations
 
dn: cn=Cancel,cn=Extended Operations,cn=config
objectClass: top
objectClass: ds-cfg-extended-operation-handler
ds-cfg-extended-operation-handler-class: org.opends.server.extensions.CancelExtendedOperation
ds-cfg-extended-operation-handler-enabled: true
cn: Cancel
 
dn: cn=Password Modify,cn=Extended Operations,cn=config
objectClass: top
objectClass: ds-cfg-extended-operation-handler
objectClass: ds-cfg-password-modify-extended-operation-handler
ds-cfg-extended-operation-handler-class: org.opends.server.extensions.PasswordModifyExtendedOperation
ds-cfg-extended-operation-handler-enabled: true
cn: Password Modify
ds-cfg-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
 
dn: cn=StartTLS,cn=Extended Operations,cn=config
objectClass: top
objectClass: ds-cfg-extended-operation-handler
ds-cfg-extended-operation-handler-class: org.opends.server.extensions.StartTLSExtendedOperation
ds-cfg-extended-operation-handler-enabled: true
cn: StartTLS
 
dn: cn=Who Am I,cn=Extended Operations,cn=config
objectClass: top
objectClass: ds-cfg-extended-operation-handler
ds-cfg-extended-operation-handler-class: org.opends.server.extensions.WhoAmIExtendedOperation
ds-cfg-extended-operation-handler-enabled: true
cn: Who Am I
 
dn: cn=Group Implementations,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Group Implementations
 
dn: cn=Static,cn=Group Implementations,cn=config
objectClass: top
objectClass: ds-cfg-group-implementation
ds-cfg-group-implementation-enabled: true
ds-cfg-group-implementation-class: org.opends.server.extensions.StaticGroup
cn: Static
 
dn: cn=Identity Mappers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Identity Mappers
 
dn: cn=Exact Match,cn=Identity Mappers,cn=config
objectClass: ds-cfg-exact-match-identity-mapper
objectClass: top
objectClass: ds-cfg-identity-mapper
ds-cfg-identity-mapper-class: org.opends.server.extensions.ExactMatchIdentityMapper
ds-cfg-identity-mapper-enabled: true
cn: Exact Match
ds-cfg-match-attribute: uid
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010843Z
 
dn: cn=Key Manager Providers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Key Manager Providers
 
dn: cn=JKS,cn=Key Manager Providers,cn=config
objectClass: ds-cfg-key-manager-provider
objectClass: top
objectClass: ds-cfg-file-based-key-manager-provider
ds-cfg-key-store-type: JKS
ds-cfg-key-manager-provider-class: org.opends.server.extensions.FileBasedKeyManagerProvider
ds-cfg-key-store-pin: password
cn: JKS
ds-cfg-key-store-file: config/server.keystore
ds-cfg-key-manager-provider-enabled: true
 
dn: cn=PKCS11,cn=Key Manager Providers,cn=config
objectClass: ds-cfg-key-manager-provider
objectClass: top
objectClass: ds-cfg-pkcs11-key-manager-provider
ds-cfg-key-manager-provider-class: org.opends.server.extensions.PKCS11KeyManagerProvider
ds-cfg-key-store-pin-file: config/keystore.pin
cn: PKCS11
ds-cfg-key-manager-provider-enabled: false
 
dn: cn=PKCS12,cn=Key Manager Providers,cn=config
objectClass: ds-cfg-key-manager-provider
objectClass: top
objectClass: ds-cfg-file-based-key-manager-provider
ds-cfg-key-store-type: PKCS12
ds-cfg-key-manager-provider-class: org.opends.server.extensions.FileBasedKeyManagerProvider
ds-cfg-key-store-pin: password
cn: PKCS12
ds-cfg-key-store-file: config/server-cert.p12
ds-cfg-key-manager-provider-enabled: true
 
dn: cn=Loggers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Loggers
 
dn: cn=File-Based Access Logger,cn=Loggers,cn=config
objectClass: ds-cfg-file-based-access-logger
objectClass: ds-cfg-logger
objectClass: top
objectClass: ds-cfg-access-logger
ds-cfg-rotation-policy: Size
ds-cfg-rotation-policy: FixedTime
ds-cfg-log-file: logs/access
ds-cfg-logger-class: org.opends.server.loggers.DirectoryAccessLogger
ds-cfg-fixed-time-limit: 86400000
ds-cfg-suppress-internal-operations: false
cn: File-Based Access Logger
ds-cfg-logger-enabled: true
ds-cfg-size-limit: 104857600
 
dn: cn=File-Based Audit Logger,cn=Loggers,cn=config
objectClass: ds-cfg-file-based-access-logger
objectClass: ds-cfg-logger
objectClass: top
objectClass: ds-cfg-access-logger
ds-cfg-rotation-policy: Size
ds-cfg-rotation-policy: FixedTime
ds-cfg-log-file: logs/audit
ds-cfg-logger-class: org.opends.server.loggers.DirectoryAuditLogger
ds-cfg-fixed-time-limit: 86400000
ds-cfg-suppress-internal-operations: true
cn: File-Based Audit Logger
ds-cfg-logger-enabled: false
ds-cfg-size-limit: 104857600
 
dn: cn=File-Based Debug Logger,cn=Loggers,cn=config
objectClass: ds-cfg-logger
objectClass: top
objectClass: ds-cfg-file-based-debug-logger
objectClass: ds-cfg-debug-logger
ds-cfg-log-file: logs/debug
ds-cfg-override-severity: EXCEPTION=INFO
ds-cfg-logger-class: org.opends.server.loggers.DirectoryDebugLogger
ds-cfg-default-severity: ERROR
ds-cfg-default-severity: WARNING
cn: File-Based Debug Logger
ds-cfg-logger-enabled: true
 
dn: cn=File-Based Error Logger,cn=Loggers,cn=config
objectClass: ds-cfg-logger
objectClass: ds-cfg-error-logger
objectClass: top
objectClass: ds-cfg-file-based-error-logger
ds-cfg-rotation-policy: Size
ds-cfg-rotation-policy: FixedTime
ds-cfg-log-file: logs/errors
ds-cfg-logger-class: org.opends.server.loggers.DirectoryErrorLogger
ds-cfg-fixed-time-limit: 86400000
ds-cfg-default-severity: FATAL_ERROR
ds-cfg-default-severity: NOTICE
ds-cfg-default-severity: SEVERE_ERROR
ds-cfg-default-severity: SEVERE_WARNING
cn: File-Based Error Logger
ds-cfg-logger-enabled: true
ds-cfg-size-limit: 104857600
 
dn: cn=Matching Rules,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Matching Rules
 
dn: cn=Auth Password Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Auth Password Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.AuthPasswordEqualityMatchingRule
 
dn: cn=Auth Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Auth Password Exact Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.AuthPasswordExactEqualityMatchingRule
 
dn: cn=Bit String Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Bit String Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.BitStringEqualityMatchingRule
 
dn: cn=Boolean Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Boolean Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.BooleanEqualityMatchingRule
 
dn: cn=Case Exact Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Exact Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseExactEqualityMatchingRule
 
dn: cn=Case Exact IA5 Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Exact IA5 Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseExactIA5EqualityMatchingRule
 
dn: cn=Case Exact IA5 Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Exact IA5 Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseExactIA5SubstringMatchingRule
 
dn: cn=Case Exact Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Exact Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseExactOrderingMatchingRule
 
dn: cn=Case Exact Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Exact Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseExactSubstringMatchingRule
 
dn: cn=Case Ignore Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreEqualityMatchingRule
 
dn: cn=Case Ignore IA5 Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore IA5 Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreIA5EqualityMatchingRule
 
dn: cn=Case Ignore IA5 Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore IA5 Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreIA5SubstringMatchingRule
 
dn: cn=Case Ignore List Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore List Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreListEqualityMatchingRule
 
dn: cn=Case Ignore List Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore List Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreListSubstringMatchingRule
 
dn: cn=Case Ignore Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreOrderingMatchingRule
 
dn: cn=Case Ignore Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Case Ignore Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.CaseIgnoreSubstringMatchingRule
 
dn: cn=Directory String First Component Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Directory String First Component Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.DirectoryStringFirstComponentEqualityMatchingRule
 
dn: cn=Distinguished Name Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Distinguished Name Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.DistinguishedNameEqualityMatchingRule
 
dn: cn=Double Metaphone Approximate Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-approximate-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Double Metaphone Approximate Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.DoubleMetaphoneApproximateMatchingRule
 
dn: cn=Generalized Time Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Generalized Time Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.GeneralizedTimeEqualityMatchingRule
 
dn: cn=Generalized Time Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Generalized Time Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.GeneralizedTimeOrderingMatchingRule
 
dn: cn=Historical CSN Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Historical CSN Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.synchronization.plugin.HistoricalCsnOrderingMatchingRule
 
dn: cn=Integer Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Integer Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.IntegerEqualityMatchingRule
 
dn: cn=Integer First Component Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Integer First Component Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.IntegerFirstComponentEqualityMatchingRule
 
dn: cn=Integer Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Integer Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.IntegerOrderingMatchingRule
 
dn: cn=Keyword Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Keyword Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.KeywordEqualityMatchingRule
 
dn: cn=Numeric String Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Numeric String Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.NumericStringEqualityMatchingRule
 
dn: cn=Numeric String Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Numeric String Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.NumericStringOrderingMatchingRule
 
dn: cn=Numeric String Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Numeric String Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.NumericStringSubstringMatchingRule
 
dn: cn=Object Identifier Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Object Identifier Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.ObjectIdentifierEqualityMatchingRule
 
dn: cn=Object Identifier First Component Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Object Identifier First Component Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.ObjectIdentifierFirstComponentEqualityMatchingRule
 
dn: cn=Octet String Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Octet String Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.OctetStringEqualityMatchingRule
 
dn: cn=Octet String Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Octet String Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.OctetStringOrderingMatchingRule
 
dn: cn=Octet String Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Octet String Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.OctetStringSubstringMatchingRule
 
dn: cn=Presentation Address Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Presentation Address Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.PresentationAddressEqualityMatchingRule
 
dn: cn=Protocol Information Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Protocol Information Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.ProtocolInformationEqualityMatchingRule
 
dn: cn=Telephone Number Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Telephone Number Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.TelephoneNumberEqualityMatchingRule
 
dn: cn=Telephone Number Substring Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Telephone Number Substring Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.TelephoneNumberSubstringMatchingRule
 
dn: cn=Unique Member Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Unique Member Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.UniqueMemberEqualityMatchingRule
 
dn: cn=User Password Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: User Password Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.UserPasswordEqualityMatchingRule
 
dn: cn=User Password Exact Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: User Password Exact Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.UserPasswordExactEqualityMatchingRule
 
dn: cn=UUID Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-equality-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: UUID Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.UUIDEqualityMatchingRule
 
dn: cn=UUID Ordering Matching Rule,cn=Matching Rules,cn=config
objectClass: ds-cfg-ordering-matching-rule
objectClass: top
objectClass: ds-cfg-matching-rule
ds-cfg-matching-rule-enabled: true
cn: UUID Ordering Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.UUIDOrderingMatchingRule
 
dn: cn=Word Equality Matching Rule,cn=Matching Rules,cn=config
objectClass: top
objectClass: ds-cfg-matching-rule
objectClass: ds-cfg-substring-matching-rule
ds-cfg-matching-rule-enabled: true
cn: Word Equality Matching Rule
ds-cfg-matching-rule-class: org.opends.server.schema.WordEqualityMatchingRule
 
dn: cn=Monitor Providers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Monitor Providers
 
dn: cn=JVM Stack Trace,cn=Monitor Providers,cn=config
objectClass: ds-cfg-monitor-provider
objectClass: top
ds-cfg-monitor-provider-class: org.opends.server.monitors.StackTraceMonitorProvider
ds-cfg-monitor-provider-enabled: true
cn: JVM Stack Trace
 
dn: cn=System Info,cn=Monitor Providers,cn=config
objectClass: ds-cfg-monitor-provider
objectClass: top
ds-cfg-monitor-provider-class: org.opends.server.monitors.SystemInfoMonitorProvider
ds-cfg-monitor-provider-enabled: true
cn: System Info
 
dn: cn=Version,cn=Monitor Providers,cn=config
objectClass: ds-cfg-monitor-provider
objectClass: top
ds-cfg-monitor-provider-class: org.opends.server.monitors.VersionMonitorProvider
ds-cfg-monitor-provider-enabled: true
cn: Version
 
dn: cn=Password Generators,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Password Generators
 
dn: cn=Random Password Generator,cn=Password Generators,cn=config
objectClass: ds-cfg-password-generator
objectClass: top
objectClass: ds-cfg-random-password-generator
ds-cfg-password-generator-class: org.opends.server.extensions.RandomPasswordGenerator
ds-cfg-password-format: alpha:3,numeric:2,alpha:3
ds-cfg-password-character-set: alpha:abcdefghijklmnopqrstuvwxyz
ds-cfg-password-character-set: numeric:0123456789
ds-cfg-password-generator-enabled: true
cn: Random Password Generator
 
dn: cn=Password Policies,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Password Policies
 
dn: cn=Clear UserPassword Policy,cn=Password Policies,cn=config
objectClass: ds-cfg-password-policy
objectClass: top
ds-cfg-skip-validation-for-administrators: false
ds-cfg-lockout-duration: 0 seconds
ds-cfg-maximum-password-age: 0 seconds
ds-cfg-lockout-failure-expiration-interval: 0 seconds
ds-cfg-allow-user-password-changes: true
ds-cfg-allow-multiple-password-values: false
ds-cfg-minimum-password-age: 0 seconds
ds-cfg-force-change-on-add: false
ds-cfg-allow-expired-password-changes: false
ds-cfg-password-attribute: userPassword
ds-cfg-lockout-failure-count: 0
ds-cfg-allow-pre-encoded-passwords: false
ds-cfg-require-secure-password-changes: false
ds-cfg-password-change-requires-current-password: false
ds-cfg-force-change-on-reset: false
ds-cfg-password-expiration-warning-interval: 5 days
ds-cfg-default-password-storage-scheme: CLEAR
ds-cfg-grace-login-count: 0
ds-cfg-maximum-password-reset-age: 0 seconds
ds-cfg-password-validator-dn: cn=Test Password Validator,cn=Password Validators,cn=config
ds-cfg-expire-passwords-without-warning: false
ds-cfg-idle-lockout-interval: 0 seconds
ds-cfg-password-generator-dn: cn=Random Password Generator,cn=Password Generators,cn=config
ds-cfg-require-secure-authentication: false
cn: Test AuthPassword Policy
 
dn: cn=Default Password Policy,cn=Password Policies,cn=config
objectClass: ds-cfg-password-policy
objectClass: top
ds-cfg-skip-validation-for-administrators: false
ds-cfg-password-expiration-warning-interval: 5 days
ds-cfg-default-password-storage-scheme: SSHA
ds-cfg-grace-login-count: 0
ds-cfg-lockout-duration: 0 seconds
ds-cfg-maximum-password-age: 0 seconds
ds-cfg-maximum-password-reset-age: 0 seconds
ds-cfg-lockout-failure-expiration-interval: 0 seconds
ds-cfg-allow-user-password-changes: true
ds-cfg-allow-multiple-password-values: false
ds-cfg-minimum-password-age: 0 seconds
ds-cfg-expire-passwords-without-warning: false
ds-cfg-idle-lockout-interval: 0 seconds
ds-cfg-password-generator-dn: cn=Random Password Generator,cn=Password Generators,cn=config
ds-cfg-require-secure-authentication: false
ds-cfg-force-change-on-add: false
ds-cfg-allow-expired-password-changes: false
ds-cfg-password-attribute: userPassword
ds-cfg-lockout-failure-count: 0
ds-cfg-allow-pre-encoded-passwords: false
cn: Default Password Policy
ds-cfg-require-secure-password-changes: false
ds-cfg-password-change-requires-current-password: false
ds-cfg-force-change-on-reset: false
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010844Z
 
dn: cn=Root Password Policy,cn=Password Policies,cn=config
objectClass: ds-cfg-password-policy
objectClass: top
ds-cfg-password-expiration-warning-interval: 5 days
ds-cfg-skip-validation-for-administrators: false
ds-cfg-default-password-storage-scheme: SSHA
ds-cfg-grace-login-count: 0
ds-cfg-lockout-duration: 0 seconds
ds-cfg-maximum-password-reset-age: 0 seconds
ds-cfg-maximum-password-age: 0 seconds
ds-cfg-lockout-failure-expiration-interval: 0 seconds
ds-cfg-allow-multiple-password-values: false
ds-cfg-allow-user-password-changes: true
ds-cfg-minimum-password-age: 0 seconds
ds-cfg-expire-passwords-without-warning: false
ds-cfg-idle-lockout-interval: 0 seconds
ds-cfg-require-secure-authentication: false
ds-cfg-force-change-on-add: false
ds-cfg-allow-pre-encoded-passwords: false
ds-cfg-allow-expired-password-changes: false
ds-cfg-password-attribute: userPassword
ds-cfg-lockout-failure-count: 0
cn: Root Password Policy
ds-cfg-require-secure-password-changes: false
ds-cfg-password-change-requires-current-password: true
ds-cfg-force-change-on-reset: false
 
dn: cn=SHA1 AuthPassword Policy,cn=Password Policies,cn=config
objectClass: ds-cfg-password-policy
objectClass: top
ds-cfg-skip-validation-for-administrators: false
ds-cfg-password-expiration-warning-interval: 5 days
ds-cfg-default-password-storage-scheme: SHA1
ds-cfg-grace-login-count: 0
ds-cfg-lockout-duration: 0 seconds
ds-cfg-maximum-password-age: 0 seconds
ds-cfg-maximum-password-reset-age: 0 seconds
ds-cfg-lockout-failure-expiration-interval: 0 seconds
ds-cfg-allow-user-password-changes: true
ds-cfg-allow-multiple-password-values: false
ds-cfg-minimum-password-age: 0 seconds
ds-cfg-expire-passwords-without-warning: false
ds-cfg-idle-lockout-interval: 0 seconds
ds-cfg-password-generator-dn: cn=Random Password Generator,cn=Password Generators,cn=config
ds-cfg-require-secure-authentication: false
ds-cfg-force-change-on-add: false
ds-cfg-allow-expired-password-changes: false
ds-cfg-password-attribute: authPassword
ds-cfg-lockout-failure-count: 0
ds-cfg-allow-pre-encoded-passwords: false
cn: SHA1 AuthPassword Policy
ds-cfg-require-secure-password-changes: false
ds-cfg-password-change-requires-current-password: false
ds-cfg-force-change-on-reset: false
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010844Z
 
dn: cn=SSHA512 UserPassword Policy,cn=Password Policies,cn=config
objectClass: ds-cfg-password-policy
objectClass: top
ds-cfg-skip-validation-for-administrators: false
ds-cfg-lockout-duration: 0 seconds
ds-cfg-maximum-password-age: 0 seconds
ds-cfg-lockout-failure-expiration-interval: 0 seconds
ds-cfg-allow-user-password-changes: true
ds-cfg-allow-multiple-password-values: false
ds-cfg-minimum-password-age: 0 seconds
ds-cfg-force-change-on-add: false
ds-cfg-allow-expired-password-changes: false
ds-cfg-password-attribute: userPassword
ds-cfg-lockout-failure-count: 0
ds-cfg-allow-pre-encoded-passwords: false
ds-cfg-require-secure-password-changes: false
ds-cfg-password-change-requires-current-password: false
ds-cfg-force-change-on-reset: false
ds-cfg-password-expiration-warning-interval: 5 days
ds-cfg-default-password-storage-scheme: SSHA512
ds-cfg-grace-login-count: 0
ds-cfg-maximum-password-reset-age: 0 seconds
ds-cfg-password-validator-dn: cn=Test Password Validator,cn=Password Validators,cn=config
ds-cfg-expire-passwords-without-warning: false
ds-cfg-idle-lockout-interval: 0 seconds
ds-cfg-password-generator-dn: cn=Random Password Generator,cn=Password Generators,cn=config
ds-cfg-require-secure-authentication: false
cn: SSHA512 UserPassword Policy
 
dn: cn=Password Storage Schemes,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Password Storage Schemes
 
dn: cn=Base64,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.Base64PasswordStorageScheme
cn: Base64
 
dn: cn=Clear,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.ClearPasswordStorageScheme
cn: Clear
 
dn: cn=MD5,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.MD5PasswordStorageScheme
cn: MD5
 
dn: cn=Salted MD5,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SaltedMD5PasswordStorageScheme
cn: Salted MD5
 
dn: cn=Salted SHA-1,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SaltedSHA1PasswordStorageScheme
cn: Salted SHA-1
 
dn: cn=Salted SHA-256,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SaltedSHA256PasswordStorageScheme
cn: Salted SHA-256
 
dn: cn=Salted SHA-384,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SaltedSHA384PasswordStorageScheme
cn: Salted SHA-384
 
dn: cn=Salted SHA-512,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SaltedSHA512PasswordStorageScheme
cn: Salted SHA-512
 
dn: cn=SHA-1,cn=Password Storage Schemes,cn=config
objectClass: top
objectClass: ds-cfg-password-storage-scheme
ds-cfg-password-storage-scheme-enabled: true
ds-cfg-password-storage-scheme-class: org.opends.server.extensions.SHA1PasswordStorageScheme
cn: SHA-1
 
dn: cn=Password Validators,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Password Validators
 
dn: cn=Length-Based Password Validator,cn=Password Validators,cn=config
objectClass: ds-cfg-password-validator
objectClass: top
objectClass: ds-cfg-length-based-password-validator
ds-cfg-maximum-password-length: 0
ds-cfg-password-validator-class: org.opends.server.extensions.LengthBasedPasswordValidator
ds-cfg-minimum-password-length: 6
cn: Length-Based Password Validator
ds-cfg-password-validator-enabled: true
 
dn: cn=Test Password Validator,cn=Password Validators,cn=config
objectClass: ds-cfg-password-validator
objectClass: top
ds-cfg-password-validator-class: org.opends.server.extensions.TestPasswordValidator
cn: Test Password Validator
ds-cfg-password-validator-enabled: true
 
dn: cn=Plugins,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Plugins
 
dn: cn=Delay PreOperation Plugin,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.DelayPreOpPlugin
ds-cfg-plugin-enabled: true
cn: Delay PreOperation Plugin
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationBind
ds-cfg-plugin-type: preOperationCompare
ds-cfg-plugin-type: preOperationDelete
ds-cfg-plugin-type: preOperationExtended
ds-cfg-plugin-type: preOperationModify
ds-cfg-plugin-type: preOperationModifyDN
ds-cfg-plugin-type: preOperationSearch
 
dn: cn=Disconnect Client Plugin,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.DisconnectClientPlugin
ds-cfg-plugin-enabled: true
cn: Disconnect Client Plugin
ds-cfg-plugin-type: preParseAbandon
ds-cfg-plugin-type: preParseAdd
ds-cfg-plugin-type: preParseBind
ds-cfg-plugin-type: preParseCompare
ds-cfg-plugin-type: preParseDelete
ds-cfg-plugin-type: preParseExtended
ds-cfg-plugin-type: preParseModify
ds-cfg-plugin-type: preParseModifyDN
ds-cfg-plugin-type: preParseSearch
ds-cfg-plugin-type: preParseUnbind
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationBind
ds-cfg-plugin-type: preOperationCompare
ds-cfg-plugin-type: preOperationDelete
ds-cfg-plugin-type: preOperationExtended
ds-cfg-plugin-type: preOperationModify
ds-cfg-plugin-type: preOperationModifyDN
ds-cfg-plugin-type: preOperationSearch
ds-cfg-plugin-type: postOperationAbandon
ds-cfg-plugin-type: postOperationAdd
ds-cfg-plugin-type: postOperationBind
ds-cfg-plugin-type: postOperationCompare
ds-cfg-plugin-type: postOperationDelete
ds-cfg-plugin-type: postOperationExtended
ds-cfg-plugin-type: postOperationModify
ds-cfg-plugin-type: postOperationModifyDN
ds-cfg-plugin-type: postOperationSearch
ds-cfg-plugin-type: postOperationUnbind
ds-cfg-plugin-type: postResponseAdd
ds-cfg-plugin-type: postResponseBind
ds-cfg-plugin-type: postResponseCompare
ds-cfg-plugin-type: postResponseDelete
ds-cfg-plugin-type: postResponseExtended
ds-cfg-plugin-type: postResponseModify
ds-cfg-plugin-type: postResponseModifyDN
ds-cfg-plugin-type: postResponseSearch
 
dn: cn=Entry UUID,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.EntryUUIDPlugin
ds-cfg-plugin-enabled: true
cn: Entry UUID
ds-cfg-plugin-type: ldifImport
ds-cfg-plugin-type: preOperationAdd
 
dn: cn=Invocation Counter Plugin,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.InvocationCounterPlugin
ds-cfg-plugin-enabled: true
cn: Invocation Counter Plugin
ds-cfg-plugin-type: preParseAbandon
ds-cfg-plugin-type: preParseAdd
ds-cfg-plugin-type: preParseBind
ds-cfg-plugin-type: preParseCompare
ds-cfg-plugin-type: preParseDelete
ds-cfg-plugin-type: preParseExtended
ds-cfg-plugin-type: preParseModify
ds-cfg-plugin-type: preParseModifyDN
ds-cfg-plugin-type: preParseSearch
ds-cfg-plugin-type: preParseUnbind
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationBind
ds-cfg-plugin-type: preOperationCompare
ds-cfg-plugin-type: preOperationDelete
ds-cfg-plugin-type: preOperationExtended
ds-cfg-plugin-type: preOperationModify
ds-cfg-plugin-type: preOperationModifyDN
ds-cfg-plugin-type: preOperationSearch
ds-cfg-plugin-type: postOperationAbandon
ds-cfg-plugin-type: postOperationAdd
ds-cfg-plugin-type: postOperationBind
ds-cfg-plugin-type: postOperationCompare
ds-cfg-plugin-type: postOperationDelete
ds-cfg-plugin-type: postOperationExtended
ds-cfg-plugin-type: postOperationModify
ds-cfg-plugin-type: postOperationModifyDN
ds-cfg-plugin-type: postOperationSearch
ds-cfg-plugin-type: postOperationUnbind
ds-cfg-plugin-type: postResponseAdd
ds-cfg-plugin-type: postResponseBind
ds-cfg-plugin-type: postResponseCompare
ds-cfg-plugin-type: postResponseDelete
ds-cfg-plugin-type: postResponseExtended
ds-cfg-plugin-type: postResponseModify
ds-cfg-plugin-type: postResponseModifyDN
ds-cfg-plugin-type: postResponseSearch
ds-cfg-plugin-type: searchResultEntry
ds-cfg-plugin-type: searchResultReference
ds-cfg-plugin-type: intermediateResponse
ds-cfg-plugin-type: postConnect
ds-cfg-plugin-type: postDisconnect
ds-cfg-plugin-type: ldifImport
ds-cfg-plugin-type: ldifExport
ds-cfg-plugin-type: startup
ds-cfg-plugin-type: shutdown
 
dn: cn=LastMod,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.LastModPlugin
ds-cfg-plugin-enabled: true
cn: LastMod
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationModify
ds-cfg-plugin-type: preOperationModifyDN
 
dn: cn=LDAP Attribute Description List,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.LDAPADListPlugin
ds-cfg-plugin-enabled: true
cn: LDAP Attribute Description List
ds-cfg-plugin-type: preParseSearch
 
dn: cn=Password Policy Import,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.PasswordPolicyImportPlugin
ds-cfg-plugin-enabled: true
cn: Password Policy Import
ds-cfg-plugin-type: ldifImport
 
dn: cn=Profiler,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-profiler-plugin
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.profiler.ProfilerPlugin
ds-cfg-profile-sample-interval: 10 milliseconds
ds-cfg-plugin-enabled: true
ds-cfg-profile-directory: logs
cn: Profiler
ds-cfg-plugin-type: startup
ds-cfg-enable-profiling-on-startup: false
 
dn: cn=Short Circuit Plugin,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.ShortCircuitPlugin
ds-cfg-plugin-enabled: true
cn: Short Circuit Plugin
ds-cfg-plugin-type: preParseAbandon
ds-cfg-plugin-type: preParseAdd
ds-cfg-plugin-type: preParseBind
ds-cfg-plugin-type: preParseCompare
ds-cfg-plugin-type: preParseDelete
ds-cfg-plugin-type: preParseExtended
ds-cfg-plugin-type: preParseModify
ds-cfg-plugin-type: preParseModifyDN
ds-cfg-plugin-type: preParseSearch
ds-cfg-plugin-type: preParseUnbind
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationBind
ds-cfg-plugin-type: preOperationCompare
ds-cfg-plugin-type: preOperationDelete
ds-cfg-plugin-type: preOperationExtended
ds-cfg-plugin-type: preOperationModify
ds-cfg-plugin-type: preOperationModifyDN
ds-cfg-plugin-type: preOperationSearch
 
dn: cn=Update PreOperation Plugin,cn=Plugins,cn=config
objectClass: top
objectClass: ds-cfg-plugin
ds-cfg-plugin-class: org.opends.server.plugins.UpdatePreOpPlugin
ds-cfg-plugin-enabled: true
cn: Delay PreOperation Plugin
ds-cfg-plugin-type: preOperationAdd
ds-cfg-plugin-type: preOperationModify
 
dn: cn=Root DNs,cn=config
objectClass: ds-cfg-root-dn-base
objectClass: top
ds-cfg-default-root-privilege-name: bypass-acl
ds-cfg-default-root-privilege-name: modify-acl
ds-cfg-default-root-privilege-name: config-read
ds-cfg-default-root-privilege-name: config-write
ds-cfg-default-root-privilege-name: ldif-import
ds-cfg-default-root-privilege-name: ldif-export
ds-cfg-default-root-privilege-name: backend-backup
ds-cfg-default-root-privilege-name: backend-restore
ds-cfg-default-root-privilege-name: server-shutdown
ds-cfg-default-root-privilege-name: server-restart
ds-cfg-default-root-privilege-name: disconnect-client
ds-cfg-default-root-privilege-name: cancel-request
ds-cfg-default-root-privilege-name: search-unindexed
ds-cfg-default-root-privilege-name: password-reset
ds-cfg-default-root-privilege-name: update-schema
ds-cfg-default-root-privilege-name: privilege-change
cn: Root DNs
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301011032Z
 
dn: cn=Directory Manager,cn=Root DNs,cn=config
objectClass: inetOrgPerson
objectClass: person
objectClass: top
objectClass: organizationalPerson
objectClass: ds-cfg-root-dn
userPassword: {SSHA}bT3wAPjyrpVlzX5548I8vvhZ91xIMPWiHRSR3Q==
cn: Directory Manager
sn: Manager
givenName: Directory
ds-cfg-alternate-bind-dn: cn=Directory Manager
modifiersName: cn=Directory Manager,cn=Root DNs,cn=config
ds-rlim-time-limit: 0
modifyTimestamp: 20070301010844Z
pwdChangedTime: 20070301010844.840Z
ds-rlim-lookthrough-limit: 0
ds-rlim-size-limit: 0
ds-pwp-password-policy-dn: cn=Root Password Policy,cn=Password Policies,cn=config
 
dn: cn=Proxy Root,cn=Root DNs,cn=config
objectClass: inetOrgPerson
objectClass: person
objectClass: top
objectClass: organizationalPerson
objectClass: ds-cfg-root-dn
sn: Root
userPassword: {SSHA}BrU+IXUb4GWXKe6Zeb6DQAzTVcaw3LUj7JcpVQ==
cn: Proxy Root
uid: proxy.root
givenName: Proxy
pwdChangedTime: 20070301011015.945Z
entryUUID: f3f5c38a-2c20-4f31-a6ce-e5c0af21da82
createTimestamp: 20070301011015Z
creatorsName: cn=Internal Client,cn=Root DNs,cn=config
ds-privilege-name: proxied-auth
 
dn: cn=Root DSE,cn=config
objectClass: ds-cfg-root-dse
objectClass: top
ds-cfg-show-all-attributes: false
cn: Root DSE
 
dn: cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: SASL Mechanisms
 
dn: cn=ANONYMOUS,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: top
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.AnonymousSASLMechanismHandler
ds-cfg-sasl-mechanism-handler-enabled: false
cn: ANONYMOUS
 
dn: cn=CRAM-MD5,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: top
objectClass: ds-cfg-cram-md5-sasl-mechanism-handler
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.CRAMMD5SASLMechanismHandler
ds-cfg-sasl-mechanism-handler-enabled: true
cn: CRAM-MD5
ds-cfg-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
 
dn: cn=DIGEST-MD5,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: top
objectClass: ds-cfg-digest-md5-sasl-mechanism-handler
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.DigestMD5SASLMechanismHandler
ds-cfg-sasl-mechanism-handler-enabled: true
cn: DIGEST-MD5
ds-cfg-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
 
dn: cn=EXTERNAL,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: top
objectClass: ds-cfg-external-sasl-mechanism-handler
ds-cfg-sasl-mechanism-handler-enabled: true
cn: EXTERNAL
ds-cfg-certificate-mapper-dn: cn=Subject Equals DN,cn=Certificate Mappers,cn=config
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.ExternalSASLMechanismHandler
ds-cfg-certificate-attribute: userCertificate
ds-cfg-client-certificate-validation-policy: ifpresent
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010846Z
 
dn: cn=GSSAPI,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: ds-cfg-gssapi-sasl-mechanism-handler
objectClass: top
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.GSSAPISASLMechanismHandler
ds-cfg-keytab: /etc/krb5/krb5.keytab
ds-cfg-sasl-mechanism-handler-enabled: false
cn: GSSAPI
ds-cfg-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
 
dn: cn=PLAIN,cn=SASL Mechanisms,cn=config
objectClass: ds-cfg-sasl-mechanism-handler
objectClass: ds-cfg-plain-sasl-mechanism-handler
objectClass: top
ds-cfg-sasl-mechanism-handler-class: org.opends.server.extensions.PlainSASLMechanismHandler
ds-cfg-sasl-mechanism-handler-enabled: true
cn: PLAIN
ds-cfg-identity-mapper-dn: cn=Exact Match,cn=Identity Mappers,cn=config
 
dn: cn=Synchronization Providers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Synchronization Providers
 
dn: cn=Syntaxes,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Syntaxes
 
dn: cn=Absolute Subtree Specification,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.AbsoluteSubtreeSpecificationSyntax
ds-cfg-syntax-enabled: true
cn: Absolute Subtree Specification
 
dn: cn=Attribute Type Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.AttributeTypeSyntax
ds-cfg-syntax-enabled: true
cn: Attribute Type Description
 
dn: cn=Authentication Password,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.AuthPasswordSyntax
ds-cfg-syntax-enabled: true
cn: Authentiation Password
 
dn: cn=Binary,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.BinarySyntax
ds-cfg-syntax-enabled: true
cn: Binary
 
dn: cn=Bit String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.BitStringSyntax
ds-cfg-syntax-enabled: true
cn: Bit String
 
dn: cn=Boolean,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.BooleanSyntax
ds-cfg-syntax-enabled: true
cn: Boolean
 
dn: cn=Certificate,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.CertificateSyntax
ds-cfg-syntax-enabled: true
cn: Certificate
 
dn: cn=Certificate List,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.CertificateListSyntax
ds-cfg-syntax-enabled: true
cn: Certificate List
 
dn: cn=Certificate Pair,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.CertificatePairSyntax
ds-cfg-syntax-enabled: true
cn: Certificate Pair
 
dn: cn=Country String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.CountryStringSyntax
ds-cfg-syntax-enabled: true
cn: Country String
 
dn: cn=Delivery Method,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.DeliveryMethodSyntax
ds-cfg-syntax-enabled: true
cn: Delivery Method
 
dn: cn=Directory String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-directory-string-attribute-syntax
objectClass: ds-cfg-attribute-syntax
ds-cfg-allow-zero-length-values: false
ds-cfg-syntax-class: org.opends.server.schema.DirectoryStringSyntax
ds-cfg-syntax-enabled: true
cn: Directory String
 
dn: cn=Distinguished Name,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.DistinguishedNameSyntax
ds-cfg-syntax-enabled: true
cn: Distinguished Name
 
dn: cn=DIT Content Rule Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.DITContentRuleSyntax
ds-cfg-syntax-enabled: true
cn: DIT Content Rule Description
 
dn: cn=DIT Structure Rule Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.DITStructureRuleSyntax
ds-cfg-syntax-enabled: true
cn: DIT Structure Rule Description
 
dn: cn=Enhanced Guide,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.EnhancedGuideSyntax
ds-cfg-syntax-enabled: true
cn: Enhanced Guide
 
dn: cn=Facsimile Telephone Number,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.FaxNumberSyntax
ds-cfg-syntax-enabled: true
cn: Facsimile Telephone Number
 
dn: cn=Fax,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.FaxSyntax
ds-cfg-syntax-enabled: true
cn: Fax
 
dn: cn=Generalized Time,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.GeneralizedTimeSyntax
ds-cfg-syntax-enabled: true
cn: Generalized Time
 
dn: cn=Guide,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.GuideSyntax
ds-cfg-syntax-enabled: true
cn: Guide
 
dn: cn=IA5 String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.IA5StringSyntax
ds-cfg-syntax-enabled: true
cn: IA5 String
 
dn: cn=Integer,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.IntegerSyntax
ds-cfg-syntax-enabled: true
cn: Integer
 
dn: cn=JPEG,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.JPEGSyntax
ds-cfg-syntax-enabled: true
cn: JPEG
 
dn: cn=LDAP Syntax Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.LDAPSyntaxDescriptionSyntax
ds-cfg-syntax-enabled: true
cn: LDAP Syntax Description
 
dn: cn=Matching Rule Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.MatchingRuleSyntax
ds-cfg-syntax-enabled: true
cn: Matching Rule Description
 
dn: cn=Matching Rule Use Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.MatchingRuleUseSyntax
ds-cfg-syntax-enabled: true
cn: Matching Rule Use Description
 
dn: cn=Name and Optional UID,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.NameAndOptionalUIDSyntax
ds-cfg-syntax-enabled: true
cn: Name and Optional UID
 
dn: cn=Name Form Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.NameFormSyntax
ds-cfg-syntax-enabled: true
cn: Name Form Description
 
dn: cn=Numeric String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.NumericStringSyntax
ds-cfg-syntax-enabled: true
cn: Numeric String
 
dn: cn=Object Class Description,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.ObjectClassSyntax
ds-cfg-syntax-enabled: true
cn: Object Class Description
 
dn: cn=Object Identifier,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.OIDSyntax
ds-cfg-syntax-enabled: true
cn: Object Identifier
 
dn: cn=Octet String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.OctetStringSyntax
ds-cfg-syntax-enabled: true
cn: Octet String
 
dn: cn=Other Mailbox,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.OtherMailboxSyntax
ds-cfg-syntax-enabled: true
cn: Other Mailbox
 
dn: cn=Postal Address,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.PostalAddressSyntax
ds-cfg-syntax-enabled: true
cn: Postal Address
 
dn: cn=Presentation Address,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.PresentationAddressSyntax
ds-cfg-syntax-enabled: true
cn: Presentation Address
 
dn: cn=Printable String,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.PrintableStringSyntax
ds-cfg-syntax-enabled: true
cn: Printable String
 
dn: cn=Protocol Information,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.ProtocolInformationSyntax
ds-cfg-syntax-enabled: true
cn: Protocol Information
 
dn: cn=Relative Subtree Specification,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.RelativeSubtreeSpecificationSyntax
ds-cfg-syntax-enabled: true
cn: Relative Subtree Specification
 
dn: cn=Substring Assertion,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.SubstringAssertionSyntax
ds-cfg-syntax-enabled: true
cn: Substring Assertion
 
dn: cn=Subtree Specification,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.RFC3672SubtreeSpecificationSyntax
ds-cfg-syntax-enabled: true
cn: Subtree Specification
 
dn: cn=Supported Algorithm,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.SupportedAlgorithmSyntax
ds-cfg-syntax-enabled: true
cn: Supported Algorithm
 
dn: cn=Telephone Number,cn=Syntaxes,cn=config
objectClass: ds-cfg-telephone-number-attribute-syntax
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.TelephoneNumberSyntax
ds-cfg-syntax-enabled: true
ds-cfg-strict-telephone-number-format: false
cn: Telephone Number
 
dn: cn=Teletex Terminal Identifier,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.TeletexTerminalIdentifierSyntax
ds-cfg-syntax-enabled: true
cn: Teletex Terminal Identifier
 
dn: cn=Telex Number,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.TelexNumberSyntax
ds-cfg-syntax-enabled: true
cn: Telex Number
 
dn: cn=User Password,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.UserPasswordSyntax
ds-cfg-syntax-enabled: true
cn: User Password
 
dn: cn=UTC Time,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.UTCTimeSyntax
ds-cfg-syntax-enabled: true
cn: UTC Time
 
dn: cn=UUID,cn=Syntaxes,cn=config
objectClass: top
objectClass: ds-cfg-attribute-syntax
ds-cfg-syntax-class: org.opends.server.schema.UUIDSyntax
ds-cfg-syntax-enabled: true
cn: UUID
 
dn: cn=Trust Manager Providers,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Trust Manager Providers
 
dn: cn=Blind Trust,cn=Trust Manager Providers,cn=config
objectClass: ds-cfg-trust-manager-provider
objectClass: top
ds-cfg-trust-manager-provider-enabled: false
ds-cfg-trust-manager-provider-class: org.opends.server.extensions.BlindTrustManagerProvider
cn: Blind Trust
 
dn: cn=JKS,cn=Trust Manager Providers,cn=config
objectClass: ds-cfg-trust-manager-provider
objectClass: top
objectClass: ds-cfg-file-based-trust-manager-provider
ds-cfg-trust-manager-provider-enabled: true
ds-cfg-trust-manager-provider-class: org.opends.server.extensions.FileBasedTrustManagerProvider
ds-cfg-trust-store-pin: password
ds-cfg-trust-store-type: JKS
cn: JKS
ds-cfg-trust-store-file: config/server.truststore
 
dn: cn=PKCS12,cn=Trust Manager Providers,cn=config
objectClass: ds-cfg-trust-manager-provider
objectClass: top
objectClass: ds-cfg-file-based-trust-manager-provider
ds-cfg-trust-manager-provider-enabled: false
ds-cfg-trust-manager-provider-class: org.opends.server.extensions.FileBasedTrustManagerProvider
ds-cfg-trust-store-type: PKCS12
cn: PKCS12
ds-cfg-trust-store-file: config/truststore.p12
 
dn: cn=Virtual Attributes,cn=config
objectClass: ds-cfg-branch
objectClass: top
cn: Virtual Attributes
 
dn: cn=Work Queue,cn=config
objectClass: ds-cfg-traditional-work-queue
objectClass: top
objectClass: ds-cfg-work-queue
ds-cfg-max-work-queue-capacity: 0
ds-cfg-num-worker-threads: 24
cn: Work Queue
ds-cfg-work-queue-class: org.opends.server.extensions.TraditionalWorkQueue
modifiersName: cn=Internal Client,cn=Root DNs,cn=config
modifyTimestamp: 20070301010846Z