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