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