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