]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
Happy new year (belated)
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2014 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapd.conf \- configuration file for slapd, the stand-alone LDAP daemon
7 .SH SYNOPSIS
8 ETCDIR/slapd.conf
9 .SH DESCRIPTION
10 The file
11 .B ETCDIR/slapd.conf
12 contains configuration information for the
13 .BR slapd (8)
14 daemon.  This configuration file is also used by the SLAPD tools
15 .BR slapacl (8),
16 .BR slapadd (8),
17 .BR slapauth (8),
18 .BR slapcat (8),
19 .BR slapdn (8),
20 .BR slapindex (8),
21 and
22 .BR slaptest (8).
23 .LP
24 The
25 .B slapd.conf
26 file consists of a series of global configuration options that apply to
27 .B slapd
28 as a whole (including all backends), followed by zero or more database
29 backend definitions that contain information specific to a backend
30 instance.
31 The configuration options are case-insensitive;
32 their value, on a case by case basis, may be case-sensitive.
33 .LP
34 The general format of
35 .B slapd.conf
36 is as follows:
37 .LP
38 .nf
39     # comment - these options apply to every database
40     <global configuration options>
41     # first database definition & configuration options
42     database <backend 1 type>
43     <configuration options specific to backend 1>
44     # subsequent database definitions & configuration options
45     ...
46 .fi
47 .LP
48 As many backend-specific sections as desired may be included.  Global
49 options can be overridden in a backend (for options that appear more
50 than once, the last appearance in the
51 .B slapd.conf
52 file is used).
53 .LP
54 If a line begins with white space, it is considered a continuation
55 of the previous line.  No physical line should be over 2000 bytes
56 long.
57 .LP
58 Blank lines and comment lines beginning with
59 a `#' character are ignored.  Note: continuation lines are unwrapped
60 before comment processing is applied.
61 .LP
62 Arguments on configuration lines are separated by white space. If an
63 argument contains white space, the argument should be enclosed in
64 double quotes.  If an argument contains a double quote (`"') or a
65 backslash character (`\\'), the character should be preceded by a
66 backslash character.
67 .LP
68 The specific configuration options available are discussed below in the
69 Global Configuration Options, General Backend Options, and General Database
70 Options.  Backend-specific options are discussed in the
71 .B slapd\-<backend>(5)
72 manual pages.  Refer to the "OpenLDAP Administrator's Guide" for more
73 details on the slapd configuration file.
74 .SH GLOBAL CONFIGURATION OPTIONS
75 Options described in this section apply to all backends, unless specifically 
76 overridden in a backend definition. Arguments that should be replaced by 
77 actual text are shown in brackets <>.
78 .TP
79 .B access to <what> "[ by <who> <access> <control> ]+"
80 Grant access (specified by <access>) to a set of entries and/or
81 attributes (specified by <what>) by one or more requestors (specified
82 by <who>).
83 If no access controls are present, the default policy
84 allows anyone and everyone to read anything but restricts
85 updates to rootdn.  (e.g., "access to * by * read").
86 The rootdn can always read and write EVERYTHING!
87 See
88 .BR slapd.access (5)
89 and the "OpenLDAP's Administrator's Guide" for details.
90 .TP
91 .B allow <features>
92 Specify a set of features (separated by white space) to
93 allow (default none).
94 .B bind_v2
95 allows acceptance of LDAPv2 bind requests.  Note that
96 .BR slapd (8)
97 does not truly implement LDAPv2 (RFC 1777), now Historic (RFC 3494).
98 .B bind_anon_cred
99 allows anonymous bind when credentials are not empty (e.g.
100 when DN is empty).
101 .B bind_anon_dn
102 allows unauthenticated (anonymous) bind when DN is not empty.
103 .B update_anon
104 allows unauthenticated (anonymous) update operations to be processed
105 (subject to access controls and other administrative limits).
106 .B proxy_authz_anon
107 allows unauthenticated (anonymous) proxy authorization control to be processed
108 (subject to access controls, authorization and other administrative limits).
109 .TP
110 .B argsfile <filename>
111 The (absolute) name of a file that will hold the 
112 .B slapd
113 server's command line (program name and options).
114 .TP
115 .B attributeoptions [option-name]...
116 Define tagging attribute options or option tag/range prefixes.
117 Options must not end with `\-', prefixes must end with `\-'.
118 The `lang\-' prefix is predefined.
119 If you use the
120 .B attributeoptions
121 directive, `lang\-' will no longer be defined and you must specify it
122 explicitly if you want it defined.
123
124 An attribute description with a tagging option is a subtype of that
125 attribute description without the option.
126 Except for that, options defined this way have no special semantics.
127 Prefixes defined this way work like the `lang\-' options:
128 They define a prefix for tagging options starting with the prefix.
129 That is, if you define the prefix `x\-foo\-', you can use the option
130 `x\-foo\-bar'.
131 Furthermore, in a search or compare, a prefix or range name (with
132 a trailing `\-') matches all options starting with that name, as well
133 as the option with the range name sans the trailing `\-'.
134 That is, `x\-foo\-bar\-' matches `x\-foo\-bar' and `x\-foo\-bar\-baz'.
135
136 RFC 4520 reserves options beginning with `x\-' for private experiments.
137 Other options should be registered with IANA, see RFC 4520 section 3.5.
138 OpenLDAP also has the `binary' option built in, but this is a transfer
139 option, not a tagging option.
140 .HP
141 .hy 0
142 .B attributetype "(\ <oid>\
143  [NAME\ <name>]\
144  [DESC\ <description>]\
145  [OBSOLETE]\
146  [SUP\ <oid>]\
147  [EQUALITY\ <oid>]\
148  [ORDERING\ <oid>]\
149  [SUBSTR\ <oid>]\
150  [SYNTAX\ <oidlen>]\
151  [SINGLE\-VALUE]\
152  [COLLECTIVE]\
153  [NO\-USER\-MODIFICATION]\
154  [USAGE\ <attributeUsage>]\ )"
155 .RS
156 Specify an attribute type using the LDAPv3 syntax defined in RFC 4512.
157 The slapd parser extends the RFC 4512 definition by allowing string
158 forms as well as numeric OIDs to be used for the attribute OID and
159 attribute syntax OID.
160 (See the
161 .B objectidentifier
162 description.) 
163 .RE
164 .TP
165 .B authid\-rewrite<cmd> <args>
166 Used by the authentication framework to convert simple user names
167 to an LDAP DN used for authorization purposes.
168 Its purpose is analogous to that of
169 .BR authz-regexp
170 (see below).
171 The prefix \fIauthid\-\fP is followed by a set of rules analogous
172 to those described in
173 .BR slapo\-rwm (5)
174 for data rewriting (replace the \fIrwm\-\fP prefix with \fIauthid\-\fP).
175 .B authid\-rewrite<cmd>
176 and
177 .B authz\-regexp
178 rules should not be intermixed.
179 .TP
180 .B authz\-policy <policy>
181 Used to specify which rules to use for Proxy Authorization.  Proxy
182 authorization allows a client to authenticate to the server using one
183 user's credentials, but specify a different identity to use for authorization
184 and access control purposes. It essentially allows user A to login as user
185 B, using user A's password.
186 The
187 .B none
188 flag disables proxy authorization. This is the default setting.
189 The
190 .B from
191 flag will use rules in the
192 .I authzFrom
193 attribute of the authorization DN.
194 The
195 .B to
196 flag will use rules in the
197 .I authzTo
198 attribute of the authentication DN.
199 The
200 .B any
201 flag, an alias for the deprecated value of
202 .BR both ,
203 will allow any of the above, whatever succeeds first (checked in
204 .BR to ,
205 .B from
206 sequence.
207 The
208 .B all
209 flag requires both authorizations to succeed.
210 .LP
211 .RS
212 The rules are mechanisms to specify which identities are allowed 
213 to perform proxy authorization.
214 The
215 .I authzFrom
216 attribute in an entry specifies which other users
217 are allowed to proxy login to this entry. The
218 .I authzTo
219 attribute in
220 an entry specifies which other users this user can authorize as.  Use of
221 .I authzTo
222 rules can be easily
223 abused if users are allowed to write arbitrary values to this attribute.
224 In general the
225 .I authzTo
226 attribute must be protected with ACLs such that
227 only privileged users can modify it.
228 The value of
229 .I authzFrom
230 and
231 .I authzTo
232 describes an 
233 .B identity 
234 or a set of identities; it can take five forms:
235 .RS
236 .TP
237 .B ldap:///<base>??[<scope>]?<filter>
238 .RE
239 .RS
240 .B dn[.<dnstyle>]:<pattern>
241 .RE
242 .RS
243 .B u[.<mech>[/<realm>]]:<pattern>
244 .RE
245 .RS
246 .B group[/objectClass[/attributeType]]:<pattern>
247 .RE
248 .RS
249 .B <pattern>
250 .RE
251 .RS
252
253 .B <dnstyle>:={exact|onelevel|children|subtree|regex}
254
255 .RE
256 The first form is a valid LDAP
257 .B URI
258 where the 
259 .IR <host>:<port> ,
260 the
261 .I <attrs>
262 and the
263 .I <extensions>
264 portions must be absent, so that the search occurs locally on either
265 .I authzFrom
266 or 
267 .IR authzTo .
268 The second form is a 
269 .BR DN ,
270 with the optional style modifiers
271 .IR exact ,
272 .IR onelevel ,
273 .IR children ,
274 and
275 .I subtree
276 for exact, onelevel, children and subtree matches, which cause 
277 .I <pattern>
278 to be normalized according to the DN normalization rules, or the special
279 .I regex
280 style, which causes the
281 .I <pattern>
282 to be treated as a POSIX (''extended'') regular expression, as
283 discussed in
284 .BR regex (7)
285 and/or
286 .BR re_format (7).
287 A pattern of
288 .I *
289 means any non-anonymous DN.
290 The third form is a SASL
291 .BR id ,
292 with the optional fields
293 .I <mech>
294 and
295 .I <realm>
296 that allow to specify a SASL
297 .BR mechanism ,
298 and eventually a SASL
299 .BR realm ,
300 for those mechanisms that support one.
301 The need to allow the specification of a mechanism is still debated, 
302 and users are strongly discouraged to rely on this possibility.
303 The fourth form is a group specification, consisting of the keyword
304 .BR group ,
305 optionally followed by the specification of the group
306 .B objectClass
307 and member
308 .BR attributeType .
309 The group with DN
310 .B <pattern>
311 is searched with base scope, and in case of match, the values of the
312 member
313 .B attributeType
314 are searched for the asserted DN.
315 For backwards compatibility, if no identity type is provided, i.e. only
316 .B <pattern>
317 is present, an
318 .I exact DN
319 is assumed; as a consequence, 
320 .B <pattern>
321 is subjected to DN normalization.
322 Since the interpretation of
323 .I authzFrom
324 and
325 .I authzTo
326 can impact security, users are strongly encouraged 
327 to explicitly set the type of identity specification that is being used.
328 A subset of these rules can be used as third arg in the 
329 .B authz\-regexp
330 statement (see below); significantly, the 
331 .IR URI ,
332 provided it results in exactly one entry,
333 and the
334 .I dn.exact:<dn> 
335 forms.
336 .RE
337 .TP
338 .B authz\-regexp <match> <replace>
339 Used by the authentication framework to convert simple user names,
340 such as provided by SASL subsystem, or extracted from certificates
341 in case of cert-based SASL EXTERNAL, or provided within the RFC 4370
342 "proxied authorization" control, to an LDAP DN used for
343 authorization purposes.  Note that the resulting DN need not refer
344 to an existing entry to be considered valid.  When an authorization
345 request is received from the SASL subsystem, the SASL 
346 .BR USERNAME ,
347 .BR REALM , 
348 and
349 .B MECHANISM
350 are taken, when available, and combined into a name of the form
351 .RS
352 .RS
353 .TP
354 .B UID=<username>[[,CN=<realm>],CN=<mechanism>],CN=auth
355
356 .RE
357 This name is then compared against the
358 .B match
359 POSIX (''extended'') regular expression, and if the match is successful,
360 the name is replaced with the
361 .B replace
362 string.  If there are wildcard strings in the 
363 .B match
364 regular expression that are enclosed in parenthesis, e.g. 
365 .RS
366 .TP
367 .B UID=([^,]*),CN=.*
368
369 .RE
370 then the portion of the name that matched the wildcard will be stored
371 in the numbered placeholder variable $1. If there are other wildcard strings
372 in parenthesis, the matching strings will be in $2, $3, etc. up to $9. The 
373 placeholders can then be used in the 
374 .B replace
375 string, e.g. 
376 .RS
377 .TP
378 .B UID=$1,OU=Accounts,DC=example,DC=com 
379
380 .RE
381 The replaced name can be either a DN, i.e. a string prefixed by "dn:",
382 or an LDAP URI.
383 If the latter, the server will use the URI to search its own database(s)
384 and, if the search returns exactly one entry, the name is
385 replaced by the DN of that entry.   The LDAP URI must have no
386 hostport, attrs, or extensions components, but the filter is mandatory,
387 e.g.
388 .RS
389 .TP
390 .B ldap:///OU=Accounts,DC=example,DC=com??one?(UID=$1)
391
392 .RE
393 The protocol portion of the URI must be strictly
394 .BR ldap .
395 Note that this search is subject to access controls.  Specifically,
396 the authentication identity must have "auth" access in the subject.
397
398 Multiple 
399 .B authz\-regexp 
400 options can be given in the configuration file to allow for multiple matching 
401 and replacement patterns. The matching patterns are checked in the order they 
402 appear in the file, stopping at the first successful match.
403
404 .\".B Caution:
405 .\"Because the plus sign + is a character recognized by the regular expression engine,
406 .\"and it will appear in names that include a REALM, be careful to escape the
407 .\"plus sign with a backslash \\+ to remove the character's special meaning.
408 .RE
409 .TP
410 .B concurrency <integer>
411 Specify a desired level of concurrency.  Provided to the underlying
412 thread system as a hint.  The default is not to provide any hint.
413 .TP
414 .B conn_max_pending <integer>
415 Specify the maximum number of pending requests for an anonymous session.
416 If requests are submitted faster than the server can process them, they
417 will be queued up to this limit. If the limit is exceeded, the session
418 is closed. The default is 100.
419 .TP
420 .B conn_max_pending_auth <integer>
421 Specify the maximum number of pending requests for an authenticated session.
422 The default is 1000.
423 .TP
424 .B defaultsearchbase <dn>
425 Specify a default search base to use when client submits a
426 non-base search request with an empty base DN.
427 Base scoped search requests with an empty base DN are not affected.
428 .TP
429 .B disallow <features>
430 Specify a set of features (separated by white space) to
431 disallow (default none).
432 .B bind_anon
433 disables acceptance of anonymous bind requests.  Note that this setting
434 does not prohibit anonymous directory access (See "require authc").
435 .B bind_simple
436 disables simple (bind) authentication.
437 .B tls_2_anon
438 disables forcing session to anonymous status (see also
439 .BR tls_authc )
440 upon StartTLS operation receipt.
441 .B tls_authc
442 disallows the StartTLS operation if authenticated (see also
443 .BR tls_2_anon ).
444 .B proxy_authz_non_critical
445 disables acceptance of the proxied authorization control (RFC4370)
446 when criticality is FALSE.
447 .B dontusecopy_non_critical
448 disables acceptance of the dontUseCopy control (a work in progress)
449 when criticality is FALSE.
450 .HP
451 .hy 0
452 .B ditcontentrule "(\ <oid>\
453  [NAME\ <name>]\
454  [DESC\ <description>]\
455  [OBSOLETE]\
456  [AUX\ <oids>]\
457  [MUST\ <oids>]\
458  [MAY\ <oids>]\
459  [NOT\ <oids>]\ )"
460 .RS
461 Specify an DIT Content Rule using the LDAPv3 syntax defined in RFC 4512.
462 The slapd parser extends the RFC 4512 definition by allowing string
463 forms as well as numeric OIDs to be used for the attribute OID and
464 attribute syntax OID.
465 (See the
466 .B objectidentifier
467 description.) 
468 .RE
469 .TP
470 .B gentlehup { on | off }
471 A SIGHUP signal will only cause a 'gentle' shutdown-attempt:
472 .B Slapd
473 will stop listening for new connections, but will not close the
474 connections to the current clients.  Future write operations return
475 unwilling-to-perform, though.  Slapd terminates when all clients
476 have closed their connections (if they ever do), or - as before -
477 if it receives a SIGTERM signal.  This can be useful if you wish to
478 terminate the server and start a new
479 .B slapd
480 server
481 .B with another database,
482 without disrupting the currently active clients.
483 The default is off.  You may wish to use
484 .B idletimeout
485 along with this option.
486 .TP
487 .B idletimeout <integer>
488 Specify the number of seconds to wait before forcibly closing
489 an idle client connection.  A idletimeout of 0 disables this
490 feature.  The default is 0. You may also want to set the
491 .B writetimeout
492 option.
493 .TP
494 .B include <filename>
495 Read additional configuration information from the given file before
496 continuing with the next line of the current file.
497 .TP
498 .B index_hash64 { on | off }
499 Use a 64 bit hash for indexing. The default is to use 32 bit hashes.
500 These hashes are used for equality and substring indexing. The 64 bit
501 version may be needed to avoid index collisions when the number of
502 indexed values exceeds ~64 million. (Note that substring indexing
503 generates multiple index values per actual attribute value.)
504 Indices generated with 32 bit hashes are incompatible with the 64 bit
505 version, and vice versa. Any existing databases must be fully reloaded
506 when changing this setting. This directive is only supported on 64 bit CPUs.
507 .TP
508 .B index_intlen <integer>
509 Specify the key length for ordered integer indices. The most significant
510 bytes of the binary integer will be used for index keys. The default
511 value is 4, which provides exact indexing for 31 bit values.
512 A floating point representation is used to index too large values.
513 .TP
514 .B index_substr_if_minlen <integer>
515 Specify the minimum length for subinitial and subfinal indices. An
516 attribute value must have at least this many characters in order to be
517 processed by the indexing functions. The default is 2.
518 .TP
519 .B index_substr_if_maxlen <integer>
520 Specify the maximum length for subinitial and subfinal indices. Only
521 this many characters of an attribute value will be processed by the
522 indexing functions; any excess characters are ignored. The default is 4.
523 .TP
524 .B index_substr_any_len <integer>
525 Specify the length used for subany indices. An attribute value must have
526 at least this many characters in order to be processed. Attribute values
527 longer than this length will be processed in segments of this length. The
528 default is 4. The subany index will also be used in subinitial and
529 subfinal index lookups when the filter string is longer than the
530 .I index_substr_if_maxlen
531 value.
532 .TP
533 .B index_substr_any_step <integer>
534 Specify the steps used in subany index lookups. This value sets the offset
535 for the segments of a filter string that are processed for a subany index
536 lookup. The default is 2. For example, with the default values, a search
537 using this filter "cn=*abcdefgh*" would generate index lookups for
538 "abcd", "cdef", and "efgh".
539
540 .LP
541 Note: Indexing support depends on the particular backend in use. Also,
542 changing these settings will generally require deleting any indices that
543 depend on these parameters and recreating them with
544 .BR slapindex (8).
545
546 .HP
547 .hy 0
548 .B ldapsyntax "(\ <oid>\
549  [DESC\ <description>]\
550  [X\-SUBST <substitute-syntax>]\ )"
551 .RS
552 Specify an LDAP syntax using the LDAPv3 syntax defined in RFC 4512.
553 The slapd parser extends the RFC 4512 definition by allowing string
554 forms as well as numeric OIDs to be used for the syntax OID.
555 (See the
556 .B objectidentifier
557 description.) 
558 The slapd parser also honors the
559 .B X\-SUBST
560 extension (an OpenLDAP-specific extension), which allows to use the
561 .B ldapsyntax
562 statement to define a non-implemented syntax along with another syntax,
563 the extension value
564 .IR substitute-syntax ,
565 as its temporary replacement.
566 The
567 .I substitute-syntax
568 must be defined.
569 This allows to define attribute types that make use of non-implemented syntaxes
570 using the correct syntax OID.
571 Unless 
572 .B X\-SUBST
573 is used, this configuration statement would result in an error,
574 since no handlers would be associated to the resulting syntax structure.
575 .RE
576
577 .TP
578 .B listener-threads <integer>
579 Specify the number of threads to use for the connection manager.
580 The default is 1 and this is typically adequate for up to 16 CPU cores.
581 The value should be set to a power of 2.
582 .TP
583 .B localSSF <SSF>
584 Specifies the Security Strength Factor (SSF) to be given local LDAP sessions,
585 such as those to the ldapi:// listener.  For a description of SSF values,
586 see 
587 .BR sasl-secprops 's
588 .B minssf
589 option description.  The default is 71.
590 .TP
591 .B logfile <filename>
592 Specify a file for recording debug log messages. By default these messages
593 only go to stderr and are not recorded anywhere else. Specifying a logfile
594 copies messages to both stderr and the logfile.
595 .TP
596 .B loglevel <integer> [...]
597 Specify the level at which debugging statements and operation 
598 statistics should be syslogged (currently logged to the
599 .BR syslogd (8) 
600 LOG_LOCAL4 facility).
601 They must be considered subsystems rather than increasingly verbose 
602 log levels.
603 Some messages with higher priority are logged regardless 
604 of the configured loglevel as soon as any logging is configured.
605 Log levels are additive, and available levels are:
606 .RS
607 .RS
608 .PD 0
609 .TP
610 .B 1
611 .B (0x1 trace)
612 trace function calls
613 .TP
614 .B 2
615 .B (0x2 packets)
616 debug packet handling
617 .TP
618 .B 4
619 .B (0x4 args)
620 heavy trace debugging (function args)
621 .TP
622 .B 8
623 .B (0x8 conns)
624 connection management
625 .TP
626 .B 16
627 .B (0x10 BER)
628 print out packets sent and received
629 .TP
630 .B 32
631 .B (0x20 filter)
632 search filter processing
633 .TP
634 .B 64
635 .B (0x40 config)
636 configuration file processing
637 .TP
638 .B 128
639 .B (0x80 ACL)
640 access control list processing
641 .TP
642 .B 256
643 .B (0x100 stats)
644 connections, LDAP operations, results (recommended)
645 .TP
646 .B 512
647 .B (0x200 stats2)
648 stats log entries sent
649 .TP
650 .B 1024
651 .B (0x400 shell)
652 print communication with shell backends
653 .TP
654 .B 2048
655 .B (0x800 parse)
656 entry parsing
657 \".TP
658 \".B 4096
659 \".B (0x1000 cache)
660 \"caching (unused)
661 \".TP
662 \".B 8192
663 \".B (0x2000 index)
664 \"data indexing (unused)
665 .TP
666 .B 16384
667 .B (0x4000 sync)
668 LDAPSync replication
669 .TP
670 .B 32768
671 .B (0x8000 none)
672 only messages that get logged whatever log level is set
673 .PD
674 .RE
675 The desired log level can be input as a single integer that combines 
676 the (ORed) desired levels, both in decimal or in hexadecimal notation,
677 as a list of integers (that are ORed internally),
678 or as a list of the names that are shown between brackets, such that
679 .LP
680 .nf
681     loglevel 129
682     loglevel 0x81
683     loglevel 128 1
684     loglevel 0x80 0x1
685     loglevel acl trace
686 .fi
687 .LP
688 are equivalent.
689 The keyword 
690 .B any
691 can be used as a shortcut to enable logging at all levels (equivalent to \-1).
692 The keyword
693 .BR none ,
694 or the equivalent integer representation, causes those messages
695 that are logged regardless of the configured loglevel to be logged.
696 In fact, if loglevel is set to 0, no logging occurs, 
697 so at least the 
698 .B none
699 level is required to have high priority messages logged.
700
701 The loglevel defaults to \fBstats\fP.
702 This level should usually also be included when using other loglevels, to
703 help analyze the logs.
704 .RE
705 .TP
706 .B moduleload <filename>
707 Specify the name of a dynamically loadable module to load. The filename
708 may be an absolute path name or a simple filename. Non-absolute names
709 are searched for in the directories specified by the
710 .B modulepath
711 option. This option and the
712 .B modulepath
713 option are only usable if slapd was compiled with \-\-enable\-modules.
714 .TP
715 .B modulepath <pathspec>
716 Specify a list of directories to search for loadable modules. Typically
717 the path is colon-separated but this depends on the operating system.
718 The default is MODULEDIR, which is where the standard OpenLDAP install
719 will place its modules.
720 .HP
721 .hy 0
722 .B objectclass "(\ <oid>\
723  [NAME\ <name>]\
724  [DESC\ <description>]\
725  [OBSOLETE]\
726  [SUP\ <oids>]\
727  [{ ABSTRACT | STRUCTURAL | AUXILIARY }]\
728  [MUST\ <oids>] [MAY\ <oids>] )"
729 .RS
730 Specify an objectclass using the LDAPv3 syntax defined in RFC 4512.
731 The slapd parser extends the RFC 4512 definition by allowing string
732 forms as well as numeric OIDs to be used for the object class OID.
733 (See the
734 .B
735 objectidentifier
736 description.)  Object classes are "STRUCTURAL" by default.
737 .RE
738 .TP
739 .B objectidentifier <name> "{ <oid> | <name>[:<suffix>] }"
740 Define a string name that equates to the given OID. The string can be used
741 in place of the numeric OID in objectclass and attribute definitions. The
742 name can also be used with a suffix of the form ":xx" in which case the
743 value "oid.xx" will be used.
744 .TP
745 .B password\-hash <hash> [<hash>...]
746 This option configures one or more hashes to be used in generation of user
747 passwords stored in the userPassword attribute during processing of
748 LDAP Password Modify Extended Operations (RFC 3062).
749 The <hash> must be one of
750 .BR {SSHA} ,
751 .BR {SHA} ,
752 .BR {SMD5} ,
753 .BR {MD5} ,
754 .BR {CRYPT} ,
755 and
756 .BR {CLEARTEXT} .
757 The default is
758 .BR {SSHA} .
759
760 .B {SHA}
761 and
762 .B {SSHA}
763 use the SHA-1 algorithm (FIPS 160-1), the latter with a seed.
764
765 .B {MD5}
766 and
767 .B {SMD5}
768 use the MD5 algorithm (RFC 1321), the latter with a seed.
769
770 .B {CRYPT}
771 uses the
772 .BR crypt (3).
773
774 .B {CLEARTEXT}
775 indicates that the new password should be
776 added to userPassword as clear text.
777
778 Note that this option does not alter the normal user applications
779 handling of userPassword during LDAP Add, Modify, or other LDAP operations.
780 .TP
781 .B password\-crypt\-salt\-format <format>
782 Specify the format of the salt passed to
783 .BR crypt (3)
784 when generating {CRYPT} passwords (see
785 .BR password\-hash )
786 during processing of LDAP Password Modify Extended Operations (RFC 3062).
787
788 This string needs to be in
789 .BR sprintf (3)
790 format and may include one (and only one) %s conversion.
791 This conversion will be substituted with a string of random
792 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
793 provides a two character salt and "$1$%.8s" tells some
794 versions of crypt(3) to use an MD5 algorithm and provides
795 8 random characters of salt.  The default is "%s", which
796 provides 31 characters of salt.
797 .TP
798 .B pidfile <filename>
799 The (absolute) name of a file that will hold the 
800 .B slapd
801 server's process ID (see
802 .BR getpid (2)).
803 .TP
804 .B referral <url>
805 Specify the referral to pass back when
806 .BR slapd (8)
807 cannot find a local database to handle a request.
808 If specified multiple times, each url is provided.
809 .TP
810 .B require <conditions>
811 Specify a set of conditions (separated by white space) to
812 require (default none).
813 The directive may be specified globally and/or per-database;
814 databases inherit global conditions, so per-database specifications
815 are additive.
816 .B bind
817 requires bind operation prior to directory operations.
818 .B LDAPv3
819 requires session to be using LDAP version 3.
820 .B authc
821 requires authentication prior to directory operations.
822 .B SASL
823 requires SASL authentication prior to directory operations.
824 .B strong
825 requires strong authentication prior to directory operations.
826 The strong keyword allows protected "simple" authentication
827 as well as SASL authentication.
828 .B none
829 may be used to require no conditions (useful to clear out globally
830 set conditions within a particular database); it must occur first
831 in the list of conditions.
832 .TP
833 .B reverse\-lookup on | off
834 Enable/disable client name unverified reverse lookup (default is 
835 .BR off 
836 if compiled with \-\-enable\-rlookups).
837 .TP
838 .B rootDSE <file>
839 Specify the name of an LDIF(5) file containing user defined attributes
840 for the root DSE.  These attributes are returned in addition to the
841 attributes normally produced by slapd.
842
843 The root DSE is an entry with information about the server and its
844 capabilities, in operational attributes.
845 It has the empty DN, and can be read with e.g.:
846 .ti +4
847 ldapsearch \-x \-b "" \-s base "+"
848 .br
849 See RFC 4512 section 5.1 for details.
850 .TP
851 .B sasl\-auxprops <plugin> [...]
852 Specify which auxprop plugins to use for authentication lookups. The
853 default is empty, which just uses slapd's internal support. Usually
854 no other auxprop plugins are needed.
855 .TP
856 .B sasl\-host <fqdn>
857 Used to specify the fully qualified domain name used for SASL processing.
858 .TP
859 .B sasl\-realm <realm>
860 Specify SASL realm.  Default is empty.
861 .TP
862 .B sasl\-secprops <properties>
863 Used to specify Cyrus SASL security properties.
864 The
865 .B none
866 flag (without any other properties) causes the flag properties
867 default, "noanonymous,noplain", to be cleared.
868 The
869 .B noplain
870 flag disables mechanisms susceptible to simple passive attacks.
871 The
872 .B noactive
873 flag disables mechanisms susceptible to active attacks.
874 The
875 .B nodict
876 flag disables mechanisms susceptible to passive dictionary attacks.
877 The
878 .B noanonymous
879 flag disables mechanisms which support anonymous login.
880 The
881 .B forwardsec
882 flag require forward secrecy between sessions.
883 The
884 .B passcred
885 require mechanisms which pass client credentials (and allow
886 mechanisms which can pass credentials to do so).
887 The
888 .B minssf=<factor> 
889 property specifies the minimum acceptable
890 .I security strength factor
891 as an integer approximate to effective key length used for
892 encryption.  0 (zero) implies no protection, 1 implies integrity
893 protection only, 56 allows DES or other weak ciphers, 112
894 allows triple DES and other strong ciphers, 128 allows RC4,
895 Blowfish and other modern strong ciphers.  The default is 0.
896 The
897 .B maxssf=<factor> 
898 property specifies the maximum acceptable
899 .I security strength factor
900 as an integer (see minssf description).  The default is INT_MAX.
901 The
902 .B maxbufsize=<size> 
903 property specifies the maximum security layer receive buffer
904 size allowed.  0 disables security layers.  The default is 65536.
905 .TP
906 .B schemadn <dn>
907 Specify the distinguished name for the subschema subentry that
908 controls the entries on this server.  The default is "cn=Subschema".
909 .TP
910 .B security <factors>
911 Specify a set of security strength factors (separated by white space)
912 to require (see
913 .BR sasl\-secprops 's
914 .B minssf
915 option for a description of security strength factors).
916 The directive may be specified globally and/or per-database.
917 .B ssf=<n>
918 specifies the overall security strength factor.
919 .B transport=<n>
920 specifies the transport security strength factor.
921 .B tls=<n>
922 specifies the TLS security strength factor.
923 .B sasl=<n>
924 specifies the SASL security strength factor.
925 .B update_ssf=<n>
926 specifies the overall security strength factor to require for
927 directory updates.
928 .B update_transport=<n>
929 specifies the transport security strength factor to require for
930 directory updates.
931 .B update_tls=<n>
932 specifies the TLS security strength factor to require for
933 directory updates.
934 .B update_sasl=<n>
935 specifies the SASL security strength factor to require for
936 directory updates.
937 .B simple_bind=<n>
938 specifies the security strength factor required for
939 .I simple
940 username/password authentication.
941 Note that the
942 .B transport
943 factor is measure of security provided by the underlying transport,
944 e.g. ldapi:// (and eventually IPSEC).  It is not normally used.
945 .TP
946 .B serverID <integer> [<URL>]
947 Specify an integer ID from 0 to 4095 for this server (limited
948 to 3 hexadecimal digits).  The ID may also be specified as a
949 hexadecimal ID by prefixing the value with "0x".
950 These IDs are
951 required when using multimaster replication and each master must have a
952 unique ID. Note that this requirement also applies to separate masters
953 contributing to a glued set of databases.
954 If the URL is provided, this directive may be specified
955 multiple times, providing a complete list of participating servers
956 and their IDs. The fully qualified hostname of each server should be
957 used in the supplied URLs. The IDs are used in the "replica id" field
958 of all CSNs generated by the specified server. The default value is zero.
959 Example:
960 .LP
961 .nf
962         serverID 1
963 .fi
964 .TP
965 .B sizelimit {<integer>|unlimited}
966 .TP
967 .B sizelimit size[.{soft|hard|unchecked}]=<integer> [...]
968 Specify the maximum number of entries to return from a search operation.
969 The default size limit is 500.
970 Use
971 .B unlimited
972 to specify no limits.
973 The second format allows a fine grain setting of the size limits.
974 Extra args can be added on the same line.
975 See
976 .BR limits
977 for an explanation of the different flags.
978 .TP
979 .B sockbuf_max_incoming <integer>
980 Specify the maximum incoming LDAP PDU size for anonymous sessions.
981 The default is 262143.
982 .TP
983 .B sockbuf_max_incoming_auth <integer>
984 Specify the maximum incoming LDAP PDU size for authenticated sessions.
985 The default is 4194303.
986 .TP
987 .B sortvals <attr> [...]
988 Specify a list of multi-valued attributes whose values will always
989 be maintained in sorted order. Using this option will allow Modify,
990 Compare, and filter evaluations on these attributes to be performed
991 more efficiently. The resulting sort order depends on the
992 attributes' syntax and matching rules and may not correspond to
993 lexical order or any other recognizable order.
994 .TP
995 .B tcp-buffer [listener=<URL>] [{read|write}=]<size>
996 Specify the size of the TCP buffer.
997 A global value for both read and write TCP buffers related to any listener
998 is defined, unless the listener is explicitly specified,
999 or either the read or write qualifiers are used.
1000 See
1001 .BR tcp (7)
1002 for details.
1003 Note that some OS-es implement automatic TCP buffer tuning.
1004 .TP
1005 .B threads <integer>
1006 Specify the maximum size of the primary thread pool.
1007 The default is 16; the minimum value is 2.
1008 .TP
1009 .B timelimit {<integer>|unlimited}
1010 .TP
1011 .B timelimit time[.{soft|hard}]=<integer> [...]
1012 Specify the maximum number of seconds (in real time)
1013 .B slapd
1014 will spend answering a search request.  The default time limit is 3600.
1015 Use
1016 .B unlimited
1017 to specify no limits.
1018 The second format allows a fine grain setting of the time limits.
1019 Extra args can be added on the same line.
1020 See
1021 .BR limits
1022 for an explanation of the different flags.
1023 .TP
1024 .B tool\-threads <integer>
1025 Specify the maximum number of threads to use in tool mode.
1026 This should not be greater than the number of CPUs in the system.
1027 The default is 1.
1028 .\"ucdata-path is obsolete / ignored...
1029 .\".TP
1030 .\".B ucdata-path <path>
1031 .\"Specify the path to the directory containing the Unicode character
1032 .\"tables. The default path is DATADIR/ucdata.
1033 .TP
1034 .B writetimeout <integer>
1035 Specify the number of seconds to wait before forcibly closing
1036 a connection with an outstanding write. This allows recovery from
1037 various network hang conditions.  A writetimeout of 0 disables this
1038 feature.  The default is 0.
1039 .SH TLS OPTIONS
1040 If
1041 .B slapd
1042 is built with support for Transport Layer Security, there are more options
1043 you can specify.
1044 .TP
1045 .B TLSCipherSuite <cipher-suite-spec>
1046 Permits configuring what ciphers will be accepted and the preference order.
1047 <cipher-suite-spec> should be a cipher specification for the TLS library
1048 in use (OpenSSL, GnuTLS, or Mozilla NSS).
1049 Example:
1050 .RS
1051 .RS
1052 .TP
1053 .I OpenSSL:
1054 TLSCipherSuite HIGH:MEDIUM:+SSLv2
1055 .TP
1056 .I GnuTLS:
1057 TLSCiphersuite SECURE256:!AES-128-CBC
1058 .RE
1059
1060 To check what ciphers a given spec selects in OpenSSL, use:
1061
1062 .nf
1063         openssl ciphers \-v <cipher-suite-spec>
1064 .fi
1065
1066 With GnuTLS the available specs can be found in the manual page of 
1067 .BR gnutls\-cli (1)
1068 (see the description of the 
1069 option
1070 .BR \-\-priority ).
1071
1072 In older versions of GnuTLS, where gnutls\-cli does not support the option
1073 \-\-priority, you can obtain the \(em more limited \(em list of ciphers by calling:
1074
1075 .nf
1076         gnutls\-cli \-l
1077 .fi
1078
1079 When using Mozilla NSS, the OpenSSL cipher suite specifications are used and
1080 translated into the format used internally by Mozilla NSS.  There isn't an easy
1081 way to list the cipher suites from the command line.  The authoritative list
1082 is in the source code for Mozilla NSS in the file sslinfo.c in the structure
1083 .nf
1084         static const SSLCipherSuiteInfo suiteInfo[]
1085 .fi
1086 .RE
1087 .TP
1088 .B TLSCACertificateFile <filename>
1089 Specifies the file that contains certificates for all of the Certificate
1090 Authorities that
1091 .B slapd
1092 will recognize.  The certificate for
1093 the CA that signed the server certificate must be included among
1094 these certificates. If the signing CA was not a top-level (root) CA,
1095 certificates for the entire sequence of CA's from the signing CA to
1096 the top-level CA should be present. Multiple certificates are simply
1097 appended to the file; the order is not significant.
1098 .TP
1099 .B TLSCACertificatePath <path>
1100 Specifies the path of a directory that contains Certificate Authority
1101 certificates in separate individual files. Usually only one of this
1102 or the TLSCACertificateFile is used. This directive is not supported
1103 when using GnuTLS.
1104
1105 When using Mozilla NSS, <path> may contain a Mozilla NSS cert/key
1106 database.  If <path> contains a Mozilla NSS cert/key database and
1107 CA cert files, OpenLDAP will use the cert/key database and will
1108 ignore the CA cert files.
1109 .TP
1110 .B TLSCertificateFile <filename>
1111 Specifies the file that contains the
1112 .B slapd
1113 server certificate.
1114
1115 When using Mozilla NSS, if using a cert/key database (specified with
1116 TLSCACertificatePath), TLSCertificateFile specifies
1117 the name of the certificate to use:
1118 .nf
1119         TLSCertificateFile Server-Cert
1120 .fi
1121 If using a token other than the internal built in token, specify the
1122 token name first, followed by a colon:
1123 .nf
1124         TLSCertificateFile my hardware device:Server-Cert
1125 .fi
1126 Use certutil -L to list the certificates by name:
1127 .nf
1128         certutil -d /path/to/certdbdir -L
1129 .fi
1130 .TP
1131 .B TLSCertificateKeyFile <filename>
1132 Specifies the file that contains the
1133 .B slapd
1134 server private key that matches the certificate stored in the
1135 .B TLSCertificateFile
1136 file.  Currently, the private key must not be protected with a password, so
1137 it is of critical importance that it is protected carefully. 
1138
1139 When using Mozilla NSS, TLSCertificateKeyFile specifies the name of
1140 a file that contains the password for the key for the certificate specified with
1141 TLSCertificateFile.  The modutil command can be used to turn off password
1142 protection for the cert/key database.  For example, if TLSCACertificatePath
1143 specifes /etc/openldap/certdb as the location of the cert/key database, use
1144 modutil to change the password to the empty string:
1145 .nf
1146         modutil -dbdir /etc/openldap/certdb -changepw 'NSS Certificate DB'
1147 .fi
1148 You must have the old password, if any.  Ignore the WARNING about the running
1149 browser.  Press 'Enter' for the new password.
1150 .TP
1151 .B TLSDHParamFile <filename>
1152 This directive specifies the file that contains parameters for Diffie-Hellman
1153 ephemeral key exchange.  This is required in order to use a DSA certificate on
1154 the server, or an RSA certificate missing the "key encipherment" key usage.
1155 Note that setting this option may also enable
1156 Anonymous Diffie-Hellman key exchanges in certain non-default cipher suites.
1157 Anonymous key exchanges should generally be avoided since they provide no
1158 actual client or server authentication and provide no protection against
1159 man-in-the-middle attacks.
1160 You should append "!ADH" to your cipher suites to ensure that these suites
1161 are not used.
1162 When using Mozilla NSS these parameters are always generated randomly
1163 so this directive is ignored.
1164 .TP
1165 .B TLSECName <name>
1166 Specify the name of a curve to use for Elliptic curve Diffie-Hellman
1167 ephemeral key exchange.  This is required to enable ECDHE algorithms in
1168 OpenSSL.  This option is not used with GnuTLS; the curves may be
1169 chosen in the GnuTLS ciphersuite specification. This option is also
1170 ignored for Mozilla NSS.
1171 .TP
1172 .B TLSProtocolMin <major>[.<minor>]
1173 Specifies minimum SSL/TLS protocol version that will be negotiated.
1174 If the server doesn't support at least that version,
1175 the SSL handshake will fail.
1176 To require TLS 1.x or higher, set this option to 3.(x+1),
1177 e.g.,
1178
1179 .nf
1180         TLSProtocolMin 3.2
1181 .fi
1182
1183 would require TLS 1.1.
1184 Specifying a minimum that is higher than that supported by the
1185 OpenLDAP implementation will result in it requiring the
1186 highest level that it does support.
1187 This directive is ignored with GnuTLS.
1188 .TP
1189 .B TLSRandFile <filename>
1190 Specifies the file to obtain random bits from when /dev/[u]random
1191 is not available.  Generally set to the name of the EGD/PRNGD socket.
1192 The environment variable RANDFILE can also be used to specify the filename.
1193 This directive is ignored with GnuTLS and Mozilla NSS.
1194 .TP
1195 .B TLSVerifyClient <level>
1196 Specifies what checks to perform on client certificates in an
1197 incoming TLS session, if any.
1198 The
1199 .B <level>
1200 can be specified as one of the following keywords:
1201 .RS
1202 .TP
1203 .B never
1204 This is the default.
1205 .B slapd
1206 will not ask the client for a certificate.
1207 .TP
1208 .B allow
1209 The client certificate is requested.  If no certificate is provided,
1210 the session proceeds normally.  If a bad certificate is provided,
1211 it will be ignored and the session proceeds normally.
1212 .TP
1213 .B try
1214 The client certificate is requested.  If no certificate is provided,
1215 the session proceeds normally.  If a bad certificate is provided,
1216 the session is immediately terminated.
1217 .TP
1218 .B demand | hard | true
1219 These keywords are all equivalent, for compatibility reasons.
1220 The client certificate is requested.  If no certificate is provided,
1221 or a bad certificate is provided, the session is immediately terminated.
1222
1223 Note that a valid client certificate is required in order to use the
1224 SASL EXTERNAL authentication mechanism with a TLS session.  As such,
1225 a non-default
1226 .B TLSVerifyClient
1227 setting must be chosen to enable SASL EXTERNAL authentication.
1228 .RE
1229 .TP
1230 .B TLSCRLCheck <level>
1231 Specifies if the Certificate Revocation List (CRL) of the CA should be 
1232 used to verify if the client certificates have not been revoked. This
1233 requires
1234 .B TLSCACertificatePath
1235 parameter to be set. This directive is ignored with GnuTLS and Mozilla NSS.
1236 .B <level>
1237 can be specified as one of the following keywords:
1238 .RS
1239 .TP
1240 .B none
1241 No CRL checks are performed
1242 .TP
1243 .B peer
1244 Check the CRL of the peer certificate
1245 .TP
1246 .B all
1247 Check the CRL for a whole certificate chain
1248 .RE
1249 .TP
1250 .B TLSCRLFile <filename>
1251 Specifies a file containing a Certificate Revocation List to be used
1252 for verifying that certificates have not been revoked. This directive is
1253 only valid when using GnuTLS and Mozilla NSS.
1254 .SH GENERAL BACKEND OPTIONS
1255 Options in this section only apply to the configuration file section
1256 for the specified backend.  They are supported by every
1257 type of backend.
1258 .TP
1259 .B backend <databasetype>
1260 Mark the beginning of a backend definition. <databasetype>
1261 should be one of
1262 .BR bdb ,
1263 .BR config ,
1264 .BR dnssrv ,
1265 .BR hdb ,
1266 .BR ldap ,
1267 .BR ldif ,
1268 .BR mdb ,
1269 .BR meta ,
1270 .BR monitor ,
1271 .BR null ,
1272 .BR passwd ,
1273 .BR perl ,
1274 .BR relay ,
1275 .BR shell ,
1276 or
1277 .BR sql ,
1278 depending on which backend will serve the database.
1279
1280 .SH GENERAL DATABASE OPTIONS
1281 Options in this section only apply to the configuration file section
1282 for the database in which they are defined.  They are supported by every
1283 type of backend.  Note that the
1284 .B database
1285 and at least one
1286 .B suffix
1287 option are mandatory for each database.
1288 .TP
1289 .B database <databasetype>
1290 Mark the beginning of a new database instance definition. <databasetype>
1291 should be one of
1292 .BR bdb ,
1293 .BR config ,
1294 .BR dnssrv ,
1295 .BR hdb ,
1296 .BR ldap ,
1297 .BR ldif ,
1298 .BR mdb ,
1299 .BR meta ,
1300 .BR monitor ,
1301 .BR null ,
1302 .BR passwd ,
1303 .BR perl ,
1304 .BR relay ,
1305 .BR shell ,
1306 or
1307 .BR sql ,
1308 depending on which backend will serve the database.
1309
1310 LDAP operations, even subtree searches, normally access only one
1311 database.
1312 That can be changed by gluing databases together with the
1313 .B subordinate
1314 keyword.
1315 Access controls and some overlays can also involve multiple databases.
1316 .TP
1317 .B add_content_acl on | off
1318 Controls whether Add operations will perform ACL checks on
1319 the content of the entry being added. This check is off
1320 by default. See the
1321 .BR slapd.access (5)
1322 manual page for more details on ACL requirements for
1323 Add operations.
1324 .TP
1325 .B extra_attrs <attrlist>
1326 Lists what attributes need to be added to search requests.
1327 Local storage backends return the entire entry to the frontend.
1328 The frontend takes care of only returning the requested attributes
1329 that are allowed by ACLs.
1330 However, features like access checking and so may need specific
1331 attributes that are not automatically returned by remote storage
1332 backends, like proxy backends and so on.
1333 .B <attrlist>
1334 is a list of attributes that are needed for internal purposes
1335 and thus always need to be collected, even when not explicitly
1336 requested by clients.
1337 .TP
1338 .B hidden on | off
1339 Controls whether the database will be used to answer
1340 queries. A database that is hidden will never be
1341 selected to answer any queries, and any suffix configured
1342 on the database will be ignored in checks for conflicts
1343 with other databases. By default, hidden is off.
1344 .TP
1345 .B lastmod on | off
1346 Controls whether
1347 .B slapd
1348 will automatically maintain the 
1349 modifiersName, modifyTimestamp, creatorsName, and 
1350 createTimestamp attributes for entries. It also controls
1351 the entryCSN and entryUUID attributes, which are needed
1352 by the syncrepl provider. By default, lastmod is on.
1353 .TP
1354 .B limits <selector> <limit> [<limit> [...]]
1355 Specify time and size limits based on the operation's initiator or
1356 base DN.
1357 The argument
1358 .B <selector>
1359 can be any of
1360 .RS
1361 .RS
1362 .TP
1363 anonymous | users | [<dnspec>=]<pattern> | group[/oc[/at]]=<pattern>
1364
1365 .RE
1366 with
1367 .RS
1368 .TP
1369 <dnspec> ::= dn[.<type>][.<style>]
1370 .TP
1371 <type>  ::= self | this
1372 .TP
1373 <style> ::= exact | base | onelevel | subtree | children | regex | anonymous
1374
1375 .RE
1376 DN type
1377 .B self
1378 is the default and means the bound user, while
1379 .B this
1380 means the base DN of the operation.
1381 The term
1382 .B anonymous
1383 matches all unauthenticated clients.
1384 The term
1385 .B users
1386 matches all authenticated clients;
1387 otherwise an
1388 .B exact
1389 dn pattern is assumed unless otherwise specified by qualifying 
1390 the (optional) key string
1391 .B dn
1392 with 
1393 .B exact
1394 or
1395 .B base
1396 (which are synonyms), to require an exact match; with
1397 .BR onelevel , 
1398 to require exactly one level of depth match; with
1399 .BR subtree ,
1400 to allow any level of depth match, including the exact match; with
1401 .BR children ,
1402 to allow any level of depth match, not including the exact match;
1403 .BR regex
1404 explicitly requires the (default) match based on POSIX (''extended'')
1405 regular expression pattern.
1406 Finally,
1407 .B anonymous
1408 matches unbound operations; the 
1409 .B pattern
1410 field is ignored.
1411 The same behavior is obtained by using the 
1412 .B anonymous
1413 form of the
1414 .B <selector>
1415 clause.
1416 The term
1417 .BR group ,
1418 with the optional objectClass
1419 .B oc
1420 and attributeType
1421 .B at
1422 fields, followed by
1423 .BR pattern ,
1424 sets the limits for any DN listed in the values of the
1425 .B at
1426 attribute (default
1427 .BR member )
1428 of the 
1429 .B oc
1430 group objectClass (default
1431 .BR groupOfNames )
1432 whose DN exactly matches
1433 .BR pattern .
1434
1435 The currently supported limits are 
1436 .B size
1437 and 
1438 .BR time .
1439
1440 The syntax for time limits is 
1441 .BR time[.{soft|hard}]=<integer> ,
1442 where 
1443 .I integer
1444 is the number of seconds slapd will spend answering a search request.
1445 If no time limit is explicitly requested by the client, the 
1446 .BR soft
1447 limit is used; if the requested time limit exceeds the
1448 .BR hard
1449 .\"limit, an
1450 .\".I "Administrative limit exceeded"
1451 .\"error is returned.
1452 limit, the value of the limit is used instead.
1453 If the
1454 .BR hard
1455 limit is set to the keyword 
1456 .IR soft ,
1457 the soft limit is used in either case; if it is set to the keyword 
1458 .IR unlimited , 
1459 no hard limit is enforced.
1460 Explicit requests for time limits smaller or equal to the
1461 .BR hard 
1462 limit are honored.
1463 If no limit specifier is set, the value is assigned to the 
1464 .BR soft 
1465 limit, and the
1466 .BR hard
1467 limit is set to
1468 .IR soft ,
1469 to preserve the original behavior.
1470
1471 The syntax for size limits is
1472 .BR size[.{soft|hard|unchecked}]=<integer> ,
1473 where
1474 .I integer
1475 is the maximum number of entries slapd will return answering a search 
1476 request.
1477 If no size limit is explicitly requested by the client, the
1478 .BR soft
1479 limit is used; if the requested size limit exceeds the
1480 .BR hard
1481 .\"limit, an 
1482 .\".I "Administrative limit exceeded"
1483 .\"error is returned.
1484 limit, the value of the limit is used instead.
1485 If the 
1486 .BR hard
1487 limit is set to the keyword 
1488 .IR soft , 
1489 the soft limit is used in either case; if it is set to the keyword
1490 .IR unlimited , 
1491 no hard limit is enforced.
1492 Explicit requests for size limits smaller or equal to the
1493 .BR hard
1494 limit are honored.
1495 The
1496 .BR unchecked
1497 specifier sets a limit on the number of candidates a search request is allowed
1498 to examine.
1499 The rationale behind it is that searches for non-properly indexed
1500 attributes may result in large sets of candidates, which must be 
1501 examined by
1502 .BR slapd (8)
1503 to determine whether they match the search filter or not.
1504 The
1505 .B unchecked
1506 limit provides a means to drop such operations before they are even 
1507 started.
1508 If the selected candidates exceed the 
1509 .BR unchecked
1510 limit, the search will abort with 
1511 .IR "Unwilling to perform" .
1512 If it is set to the keyword 
1513 .IR unlimited , 
1514 no limit is applied (the default).
1515 If it is set to
1516 .IR disabled ,
1517 the search is not even performed; this can be used to disallow searches
1518 for a specific set of users.
1519 If no limit specifier is set, the value is assigned to the
1520 .BR soft 
1521 limit, and the
1522 .BR hard
1523 limit is set to
1524 .IR soft ,
1525 to preserve the original behavior.
1526
1527 In case of no match, the global limits are used.
1528 The default values are the same as for
1529 .B sizelimit
1530 and
1531 .BR timelimit ;
1532 no limit is set on 
1533 .BR unchecked .
1534
1535 If 
1536 .B pagedResults
1537 control is requested, the 
1538 .B hard
1539 size limit is used by default, because the request of a specific page size
1540 is considered an explicit request for a limitation on the number
1541 of entries to be returned.
1542 However, the size limit applies to the total count of entries returned within
1543 the search, and not to a single page.
1544 Additional size limits may be enforced; the syntax is
1545 .BR size.pr={<integer>|noEstimate|unlimited} ,
1546 where
1547 .I integer
1548 is the max page size if no explicit limit is set; the keyword
1549 .I noEstimate
1550 inhibits the server from returning an estimate of the total number
1551 of entries that might be returned
1552 (note: the current implementation does not return any estimate).
1553 The keyword
1554 .I unlimited
1555 indicates that no limit is applied to the pagedResults control page size.
1556 The syntax
1557 .B size.prtotal={<integer>|unlimited|disabled}
1558 allows to set a limit on the total number of entries that a pagedResults
1559 control allows to return.
1560 By default it is set to the 
1561 .B hard
1562 limit.
1563 When set, 
1564 .I integer
1565 is the max number of entries that the whole search with pagedResults control
1566 can return.
1567 Use 
1568 .I unlimited
1569 to allow unlimited number of entries to be returned, e.g. to allow
1570 the use of the pagedResults control as a means to circumvent size 
1571 limitations on regular searches; the keyword
1572 .I disabled
1573 disables the control, i.e. no paged results can be returned.
1574 Note that the total number of entries returned when the pagedResults control 
1575 is requested cannot exceed the 
1576 .B hard 
1577 size limit of regular searches unless extended by the
1578 .B prtotal
1579 switch.
1580
1581 The \fBlimits\fP statement is typically used to let an unlimited
1582 number of entries be returned by searches performed
1583 with the identity used by the consumer for synchronization purposes
1584 by means of the RFC 4533 LDAP Content Synchronization protocol
1585 (see \fBsyncrepl\fP for details).
1586 .RE
1587 .TP
1588 .B maxderefdepth <depth>
1589 Specifies the maximum number of aliases to dereference when trying to
1590 resolve an entry, used to avoid infinite alias loops. The default is 15.
1591 .TP
1592 .B mirrormode on | off
1593 This option puts a replica database into "mirror" mode.  Update
1594 operations will be accepted from any user, not just the updatedn.  The
1595 database must already be configured as a syncrepl consumer
1596 before this keyword may be set. This mode also requires a
1597 .B serverID
1598 (see above) to be configured.
1599 By default, mirrormode is off.
1600 .TP
1601 .B monitoring on | off
1602 This option enables database-specific monitoring in the entry related
1603 to the current database in the "cn=Databases,cn=Monitor" subtree 
1604 of the monitor database, if the monitor database is enabled.
1605 Currently, only the BDB and the HDB databases provide database-specific
1606 monitoring.
1607 The default depends on the backend type.
1608 .TP
1609 .B overlay <overlay-name>
1610 Add the specified overlay to this database. An overlay is a piece of
1611 code that intercepts database operations in order to extend or change
1612 them. Overlays are pushed onto
1613 a stack over the database, and so they will execute in the reverse
1614 of the order in which they were configured and the database itself
1615 will receive control last of all. See the
1616 .BR slapd.overlays (5)
1617 manual page for an overview of the available overlays.
1618 Note that all of the database's
1619 regular settings should be configured before any overlay settings.
1620 .TP
1621 .B readonly on | off
1622 This option puts the database into "read-only" mode.  Any attempts to 
1623 modify the database will return an "unwilling to perform" error.  By
1624 default, readonly is off.
1625 .TP
1626 .B restrict <oplist>
1627 Specify a whitespace separated list of operations that are restricted.
1628 If defined inside a database specification, restrictions apply only
1629 to that database, otherwise they are global.
1630 Operations can be any of 
1631 .BR add ,
1632 .BR bind ,
1633 .BR compare ,
1634 .BR delete ,
1635 .BR extended[=<OID>] ,
1636 .BR modify ,
1637 .BR rename ,
1638 .BR search ,
1639 or the special pseudo-operations
1640 .B read
1641 and
1642 .BR write ,
1643 which respectively summarize read and write operations.
1644 The use of 
1645 .I restrict write
1646 is equivalent to 
1647 .I readonly on
1648 (see above).
1649 The 
1650 .B extended
1651 keyword allows to indicate the OID of the specific operation
1652 to be restricted.
1653 .TP
1654 .B rootdn <dn>
1655 Specify the distinguished name that is not subject to access control 
1656 or administrative limit restrictions for operations on this database.
1657 This DN may or may not be associated with an entry.  An empty root
1658 DN (the default) specifies no root access is to be granted.  It is
1659 recommended that the rootdn only be specified when needed (such as
1660 when initially populating a database).  If the rootdn is within
1661 a namingContext (suffix) of the database, a simple bind password
1662 may also be provided using the
1663 .B rootpw
1664 directive. Many optional features, including syncrepl, require the
1665 rootdn to be defined for the database.
1666 .TP
1667 .B rootpw <password>
1668 Specify a password (or hash of the password) for the rootdn.  The
1669 password can only be set if the rootdn is within the namingContext
1670 (suffix) of the database.
1671 This option accepts all RFC 2307 userPassword formats known to
1672 the server (see 
1673 .B password\-hash
1674 description) as well as cleartext.
1675 .BR slappasswd (8) 
1676 may be used to generate a hash of a password.  Cleartext
1677 and \fB{CRYPT}\fP passwords are not recommended.  If empty
1678 (the default), authentication of the root DN is by other means
1679 (e.g. SASL).  Use of SASL is encouraged.
1680 .TP
1681 .B suffix <dn suffix>
1682 Specify the DN suffix of queries that will be passed to this 
1683 backend database.  Multiple suffix lines can be given and at least one is 
1684 required for each database definition.
1685
1686 If the suffix of one database is "inside" that of another, the database
1687 with the inner suffix must come first in the configuration file.
1688 You may also want to glue such databases together with the
1689 .B subordinate
1690 keyword.
1691 .TP
1692 .B subordinate [advertise]
1693 Specify that the current backend database is a subordinate of another
1694 backend database. A subordinate  database may have only one suffix. This
1695 option may be used to glue multiple databases into a single namingContext.
1696 If the suffix of the current database is within the namingContext of a
1697 superior database, searches against the superior database will be
1698 propagated to the subordinate as well. All of the databases
1699 associated with a single namingContext should have identical rootdns.
1700 Behavior of other LDAP operations is unaffected by this setting. In
1701 particular, it is not possible to use moddn to move an entry from
1702 one subordinate to another subordinate within the namingContext.
1703
1704 If the optional \fBadvertise\fP flag is supplied, the naming context of
1705 this database is advertised in the root DSE. The default is to hide this
1706 database context, so that only the superior context is visible.
1707
1708 If the slap tools
1709 .BR slapcat (8),
1710 .BR slapadd (8),
1711 or
1712 .BR slapindex (8)
1713 are used on the superior database, any glued subordinates that support
1714 these tools are opened as well.
1715
1716 Databases that are glued together should usually be configured with the
1717 same indices (assuming they support indexing), even for attributes that
1718 only exist in some of these databases. In general, all of the glued
1719 databases should be configured as similarly as possible, since the intent
1720 is to provide the appearance of a single directory.
1721
1722 Note that the \fIsubordinate\fP functionality is implemented internally
1723 by the \fIglue\fP overlay and as such its behavior will interact with other
1724 overlays in use. By default, the glue overlay is automatically configured as
1725 the last overlay on the superior backend. Its position on the backend
1726 can be explicitly configured by setting an \fBoverlay glue\fP directive
1727 at the desired position. This explicit configuration is necessary e.g.
1728 when using the \fIsyncprov\fP overlay, which needs to follow \fIglue\fP
1729 in order to work over all of the glued databases. E.g.
1730 .RS
1731 .nf
1732         database mdb
1733         suffix dc=example,dc=com
1734         ...
1735         overlay glue
1736         overlay syncprov
1737 .fi
1738 .RE
1739 .TP
1740 .B sync_use_subentry 
1741 Store the syncrepl contextCSN in a subentry instead of the context entry
1742 of the database. The subentry's RDN will be "cn=ldapsync". By default
1743 the contextCSN is stored in the context entry.
1744 .HP
1745 .hy 0
1746 .B syncrepl rid=<replica ID>
1747 .B provider=ldap[s]://<hostname>[:port]
1748 .B searchbase=<base DN>
1749 .B [type=refreshOnly|refreshAndPersist]
1750 .B [interval=dd:hh:mm:ss]
1751 .B [retry=[<retry interval> <# of retries>]+]
1752 .B [filter=<filter str>]
1753 .B [scope=sub|one|base|subord]
1754 .B [attrs=<attr list>]
1755 .B [attrsonly]
1756 .B [sizelimit=<limit>]
1757 .B [timelimit=<limit>]
1758 .B [schemachecking=on|off]
1759 .B [network\-timeout=<seconds>]
1760 .B [timeout=<seconds>]
1761 .B [bindmethod=simple|sasl]
1762 .B [binddn=<dn>]
1763 .B [saslmech=<mech>]
1764 .B [authcid=<identity>]
1765 .B [authzid=<identity>]
1766 .B [credentials=<passwd>]
1767 .B [realm=<realm>]
1768 .B [secprops=<properties>]
1769 .B [keepalive=<idle>:<probes>:<interval>]
1770 .B [starttls=yes|critical]
1771 .B [tls_cert=<file>]
1772 .B [tls_key=<file>]
1773 .B [tls_cacert=<file>]
1774 .B [tls_cacertdir=<path>]
1775 .B [tls_reqcert=never|allow|try|demand]
1776 .B [tls_ciphersuite=<ciphers>]
1777 .B [tls_crlcheck=none|peer|all]
1778 .B [tls_protocol_min=<major>[.<minor>]]
1779 .B [suffixmassage=<real DN>]
1780 .B [logbase=<base DN>]
1781 .B [logfilter=<filter str>]
1782 .B [syncdata=default|accesslog|changelog]
1783 .RS
1784 Specify the current database as a replica which is kept up-to-date with the 
1785 master content by establishing the current
1786 .BR slapd (8)
1787 as a replication consumer site running a
1788 .B syncrepl
1789 replication engine.
1790 The replica content is kept synchronized to the master content using
1791 the LDAP Content Synchronization protocol. Refer to the
1792 "OpenLDAP Administrator's Guide" for detailed information on
1793 setting up a replicated
1794 .B slapd
1795 directory service using the 
1796 .B syncrepl
1797 replication engine.
1798
1799 .B rid
1800 identifies the current
1801 .B syncrepl
1802 directive within the replication consumer site.
1803 It is a non-negative integer not greater than 999 (limited
1804 to three decimal digits).
1805
1806 .B provider
1807 specifies the replication provider site containing the master content
1808 as an LDAP URI. If <port> is not given, the standard LDAP port number
1809 (389 or 636) is used.
1810
1811 The content of the
1812 .B syncrepl
1813 replica is defined using a search
1814 specification as its result set. The consumer
1815 .B slapd
1816 will send search requests to the provider
1817 .B slapd
1818 according to the search specification. The search specification includes
1819 .BR searchbase ", " scope ", " filter ", " attrs ", " attrsonly ", " sizelimit ", "
1820 and
1821 .B timelimit
1822 parameters as in the normal search specification. 
1823 The \fBscope\fP defaults to \fBsub\fP, the \fBfilter\fP defaults to
1824 \fB(objectclass=*)\fP, while there is no default \fBsearchbase\fP. The
1825 \fBattrs\fP list defaults to \fB"*,+"\fP to return all user and operational
1826 attributes, and \fBattrsonly\fP is unset by default.
1827 The \fBsizelimit\fP and \fBtimelimit\fP only
1828 accept "unlimited" and positive integers, and both default to "unlimited".
1829 The \fBsizelimit\fP and \fBtimelimit\fP parameters define
1830 a consumer requested limitation on the number of entries that can be returned
1831 by the LDAP Content Synchronization operation; as such, it is intended
1832 to implement partial replication based on the size of the replicated database
1833 and on the time required by the synchronization.
1834 Note, however, that any provider-side limits for the replication identity
1835 will be enforced by the provider regardless of the limits requested
1836 by the LDAP Content Synchronization operation, much like for any other
1837 search operation.
1838
1839 The LDAP Content Synchronization protocol has two operation types.
1840 In the
1841 .B refreshOnly
1842 operation, the next synchronization search operation
1843 is periodically rescheduled at an interval time (specified by 
1844 .B interval
1845 parameter; 1 day by default)
1846 after each synchronization operation finishes.
1847 In the
1848 .B refreshAndPersist
1849 operation, a synchronization search remains persistent in the provider slapd.
1850 Further updates to the master replica will generate
1851 .B searchResultEntry
1852 to the consumer slapd as the search responses to the persistent
1853 synchronization search.
1854
1855 If an error occurs during replication, the consumer will attempt to
1856 reconnect according to the
1857 .B retry
1858 parameter which is a list of the <retry interval> and <# of retries> pairs.
1859 For example, retry="60 10 300 3" lets the consumer retry every 60 seconds
1860 for the first 10 times and then retry every 300 seconds for the next 3
1861 times before stop retrying. The `+' in <# of retries> means indefinite
1862 number of retries until success.
1863 If no 
1864 .B retry
1865 was specified, by default syncrepl retries every hour forever.
1866
1867 The schema checking can be enforced at the LDAP Sync
1868 consumer site by turning on the
1869 .B schemachecking
1870 parameter. The default is \fBoff\fP.
1871 Schema checking \fBon\fP means that replicated entries must have
1872 a structural objectClass, must obey to objectClass requirements
1873 in terms of required/allowed attributes, and that naming attributes
1874 and distinguished values must be present.
1875 As a consequence, schema checking should be \fBoff\fP when partial
1876 replication is used.
1877
1878 The
1879 .B network\-timeout
1880 parameter sets how long the consumer will wait to establish a
1881 network connection to the provider. Once a connection is
1882 established, the
1883 .B timeout
1884 parameter determines how long the consumer will wait for the initial
1885 Bind request to complete. The defaults for these parameters come
1886 from 
1887 .BR ldap.conf (5).
1888
1889 A
1890 .B bindmethod
1891 of 
1892 .B simple
1893 requires the options 
1894 .B binddn
1895 and 
1896 .B credentials
1897 and should only be used when adequate security services
1898 (e.g. TLS or IPSEC) are in place.
1899 .B REMEMBER: simple bind credentials must be in cleartext!
1900 A
1901 .B bindmethod
1902 of
1903 .B sasl
1904 requires the option
1905 .B saslmech.
1906 Depending on the mechanism, an authentication identity and/or
1907 credentials can be specified using
1908 .B authcid
1909 and
1910 .B credentials.
1911 The
1912 .B authzid
1913 parameter may be used to specify an authorization identity.
1914 Specific security properties (as with the
1915 .B sasl\-secprops
1916 keyword above) for a SASL bind can be set with the
1917 .B secprops
1918 option. A non default SASL realm can be set with the
1919 .B realm 
1920 option.
1921 The identity used for synchronization by the consumer should be allowed
1922 to receive an unlimited number of entries in response to a search request.
1923 The provider, other than allow authentication of the syncrepl identity,
1924 should grant that identity appropriate access privileges to the data 
1925 that is being replicated (\fBaccess\fP directive), and appropriate time 
1926 and size limits.
1927 This can be accomplished by either allowing unlimited \fBsizelimit\fP
1928 and \fBtimelimit\fP, or by setting an appropriate \fBlimits\fP statement
1929 in the consumer's configuration (see \fBsizelimit\fP and \fBlimits\fP
1930 for details).
1931
1932 The
1933 .B keepalive
1934 parameter sets the values of \fIidle\fP, \fIprobes\fP, and \fIinterval\fP
1935 used to check whether a socket is alive;
1936 .I idle
1937 is the number of seconds a connection needs to remain idle before TCP 
1938 starts sending keepalive probes;
1939 .I probes
1940 is the maximum number of keepalive probes TCP should send before dropping
1941 the connection;
1942 .I interval
1943 is interval in seconds between individual keepalive probes.
1944 Only some systems support the customization of these values;
1945 the
1946 .B keepalive
1947 parameter is ignored otherwise, and system-wide settings are used.
1948
1949 The
1950 .B starttls
1951 parameter specifies use of the StartTLS extended operation
1952 to establish a TLS session before Binding to the provider. If the
1953 .B critical
1954 argument is supplied, the session will be aborted if the StartTLS request
1955 fails. Otherwise the syncrepl session continues without TLS. The
1956 tls_reqcert setting defaults to "demand" and the other TLS settings
1957 default to the same as the main slapd TLS settings.
1958
1959 The
1960 .B suffixmassage
1961 parameter allows the consumer to pull entries from a remote directory
1962 whose DN suffix differs from the local directory. The portion of the
1963 remote entries' DNs that matches the \fIsearchbase\fP will be replaced
1964 with the suffixmassage DN.
1965
1966 Rather than replicating whole entries, the consumer can query logs of
1967 data modifications. This mode of operation is referred to as \fIdelta
1968 syncrepl\fP. In addition to the above parameters, the
1969 .B logbase
1970 and
1971 .B logfilter
1972 parameters must be set appropriately for the log that will be used. The
1973 .B syncdata
1974 parameter must be set to either "accesslog" if the log conforms to the
1975 .BR slapo\-accesslog (5)
1976 log format, or "changelog" if the log conforms
1977 to the obsolete \fIchangelog\fP format. If the
1978 .B syncdata
1979 parameter is omitted or set to "default" then the log parameters are
1980 ignored.
1981 .RE
1982 .TP
1983 .B updatedn <dn>
1984 This option is only applicable in a slave
1985 database.
1986 It specifies the DN permitted to update (subject to access controls)
1987 the replica.  It is only needed in certain push-mode
1988 replication scenarios.  Generally, this DN
1989 .I should not
1990 be the same as the
1991 .B rootdn 
1992 used at the master.
1993 .TP
1994 .B updateref <url>
1995 Specify the referral to pass back when
1996 .BR slapd (8)
1997 is asked to modify a replicated local database.
1998 If specified multiple times, each url is provided.
1999
2000 .SH DATABASE-SPECIFIC OPTIONS
2001 Each database may allow specific configuration options; they are
2002 documented separately in the backends' manual pages. See the
2003 .BR slapd.backends (5)
2004 manual page for an overview of available backends.
2005 .SH EXAMPLES
2006 .LP
2007 Here is a short example of a configuration file:
2008 .LP
2009 .RS
2010 .nf
2011 include   SYSCONFDIR/schema/core.schema
2012 pidfile   LOCALSTATEDIR/run/slapd.pid
2013
2014 # Subtypes of "name" (e.g. "cn" and "ou") with the
2015 # option ";x\-hidden" can be searched for/compared,
2016 # but are not shown.  See \fBslapd.access\fP(5).
2017 attributeoptions x\-hidden lang\-
2018 access to attrs=name;x\-hidden by * =cs
2019
2020 # Protect passwords.  See \fBslapd.access\fP(5).
2021 access    to attrs=userPassword  by * auth
2022 # Read access to other attributes and entries.
2023 access    to *  by * read
2024
2025 database  mdb
2026 suffix    "dc=our\-domain,dc=com"
2027 # The database directory MUST exist prior to
2028 # running slapd AND should only be accessible
2029 # by the slapd/tools. Mode 0700 recommended.
2030 directory LOCALSTATEDIR/openldap\-data
2031 # Indices to maintain
2032 index     objectClass  eq
2033 index     cn,sn,mail   pres,eq,approx,sub
2034
2035 # We serve small clients that do not handle referrals,
2036 # so handle remote lookups on their behalf.
2037 database  ldap
2038 suffix    ""
2039 uri       ldap://ldap.some\-server.com/
2040 lastmod   off
2041 .fi
2042 .RE
2043 .LP
2044 "OpenLDAP Administrator's Guide" contains a longer annotated
2045 example of a configuration file.
2046 The original ETCDIR/slapd.conf is another example.
2047 .SH FILES
2048 .TP
2049 ETCDIR/slapd.conf
2050 default slapd configuration file
2051 .SH SEE ALSO
2052 .BR ldap (3),
2053 .BR gnutls\-cli (1),
2054 .BR slapd\-config (5),
2055 .BR slapd.access (5),
2056 .BR slapd.backends (5),
2057 .BR slapd.overlays (5),
2058 .BR slapd.plugin (5),
2059 .BR slapd (8),
2060 .BR slapacl (8),
2061 .BR slapadd (8),
2062 .BR slapauth (8),
2063 .BR slapcat (8),
2064 .BR slapdn (8),
2065 .BR slapindex (8),
2066 .BR slappasswd (8),
2067 .BR slaptest (8).
2068 .LP
2069 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
2070 .SH ACKNOWLEDGEMENTS
2071 .so ../Project