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