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