]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.conf.5
keeps syncrepl manpage sections current
[openldap] / doc / man / man5 / slapd.conf.5
1 .TH SLAPD.CONF 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2003 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 slapadd (8),
18 .BR slapcat (8),
19 and
20 .BR slapindex (8).
21 .LP
22 The
23 .B slapd.conf
24 file consists of a series of global configuration options that apply to
25 .B slapd
26 as a whole (including all backends), followed by zero or more database
27 backend definitions that contain information specific to a backend
28 instance.
29 .LP
30 The general format of
31 .B slapd.conf
32 is as follows:
33 .LP
34 .nf
35     # comment - these options apply to every database
36     <global configuration options>
37     # first database definition & configuration options
38     database <backend 1 type>
39     <configuration options specific to backend 1>
40     # subsequent database definitions & configuration options
41     ...
42 .fi
43 .LP
44 As many backend-specific sections as desired may be included.  Global
45 options can be overridden in a backend (for options that appear more
46 than once, the last appearance in the
47 .B slapd.conf
48 file is used).
49 .LP
50 If a line begins with white space, it is considered a continuation
51 of the previous line.  Blank lines and comment lines beginning with
52 a `#' character are ignored.  (Note: continuation lines are unwrapped
53 before comment processing is applied.)
54 .LP
55 Arguments on configuration lines are separated by white space. If an
56 argument contains white space, the argument should be enclosed in
57 double quotes.  If an argument contains a double quote (`"') or a
58 backslash character (`\\'), the character should be preceded by a
59 backslash character.
60 .LP
61 The specific configuration options available are discussed below in the
62 Global Configuration Options, General Backend Options, and General Database
63 Options.  Backend-specific options are discussed in the
64 .B slapd-<backend>(5)
65 manual pages.  Refer to the "OpenLDAP Administrator's Guide" for more
66 details on the slapd configuration file.
67 .SH GLOBAL CONFIGURATION OPTIONS
68 Options described in this section apply to all backends, unless specifically 
69 overridden in a backend definition. Arguments that should be replaced by 
70 actual text are shown in brackets <>.
71 .TP
72 .B access to <what> "[ by <who> <access> <control> ]+"
73 Grant access (specified by <access>) to a set of entries and/or
74 attributes (specified by <what>) by one or more requestors (specified
75 by <who>).
76 See
77 .BR slapd.access (5)
78 and the "OpenLDAP's Administrator's Guide" for details.
79 .TP
80 .B allow <features>
81 Specify a set of features (separated by white space) to
82 allow (default none).
83 .B bind_v2
84 allows acceptance of LDAPv2 bind requests.  Note that
85 .BR slapd (8)
86 does not truly implement LDAPv2 (RFC 1777), now Historic (RFC 3494).
87 .B bind_anon_cred
88 allows anonymous bind when credentials are not empty (e.g.
89 when DN is empty).
90 .B bind_anon_dn
91 allows unauthenticated (anonymous) bind when DN is not empty.
92 .B update_anon
93 allow unauthenticated (anonymous) update operations to be processed
94 (subject to access controls and other administrative limits).
95 .TP
96 .B argsfile <filename>
97 The ( absolute ) name of a file that will hold the 
98 .B slapd
99 server's command line options
100 if started without the debugging command line option.
101 .TP
102 .B attributeoptions [option-name]...
103 Define tagging attribute options or option tag/range prefixes.
104 Options must not end with `-', prefixes must end with `-'.
105 The `lang-' prefix is predefined.
106 If you use the
107 .B attributeoptions
108 directive, `lang-' will no longer be defined and you must specify it
109 explicitly if you want it defined.
110
111 An attribute description with a tagging option is a subtype of that
112 attribute description without the option.
113 Except for that, options defined this way have no special semantics.
114 Prefixes defined this way work like the `lang-' options:
115 They define a prefix for tagging options starting with the prefix.
116 That is, if you define the prefix `x-foo-', you can use the option
117 `x-foo-bar'.
118 Furthermore, in a search or compare, a prefix or range name (with
119 a trailing `-') matches all options starting with that name, as well
120 as the option with the range name sans the trailing `-'.
121 That is, `x-foo-bar-' matches `x-foo-bar' and `x-foo-bar-baz'.
122
123 RFC2251 reserves options beginning with `x-' for private experiments.
124 Other options should be registered with IANA, see RFC3383 section 3.4.
125 OpenLDAP also has the `binary' option built in, but this is a transfer
126 option, not a tagging option.
127 .HP
128 .hy 0
129 .B attributetype "(\ <oid>\
130  [NAME\ <name>]\
131  [DESC\ <description>]\
132  [OBSOLETE]\
133  [SUP\ <oid>]\
134  [EQUALITY\ <oid>]\
135  [ORDERING\ <oid>]\
136  [SUBSTR\ <oid>]\
137  [SYNTAX\ <oidlen>]\
138  [SINGLE\-VALUE]\
139  [COLLECTIVE]\
140  [NO\-USER\-MODIFICATION]\
141  [USAGE\ <attributeUsage>]\ )"
142 .RS
143 Specify an attribute type using the LDAPv3 syntax defined in RFC 2252.
144 The slapd parser extends the RFC 2252 definition by allowing string
145 forms as well as numeric OIDs to be used for the attribute OID and
146 attribute syntax OID.
147 (See the
148 .B objectidentifier
149 description.) 
150 .RE
151 .TP
152 .B concurrency <integer>
153 Specify a desired level of concurrency.  Provided to the underlying
154 thread system as a hint.  The default is not to provide any hint.
155 .TP
156 .B conn_max_pending <integer>
157 Specify the maximum number of pending requests for an anonymous session.
158 If requests are submitted faster than the server can process them, they
159 will be queued up to this limit. If the limit is exceeded, the session
160 is closed. The default is 100.
161 .TP
162 .B conn_max_pending_auth <integer>
163 Specify the maximum number of pending requests for an authenticated session.
164 The default is 1000.
165 .\".TP
166 .\".B debug <subsys> <level>
167 .\"Specify a logging level for a particular subsystem.  The subsystems include
168 .\".B global
169 .\"a global level for all subsystems,
170 .\".B acl
171 .\"the ACL engine,
172 .\".B backend
173 .\"the backend databases,
174 .\".B cache
175 .\"the entry cache manager,
176 .\".B config
177 .\"the config file reader,
178 .\".B connection
179 .\"the connection manager,
180 .\".B cyrus
181 .\"the Cyrus SASL library interface,
182 .\".B filter
183 .\"the search filter processor,
184 .\".B getdn
185 .\"the DN normalization library,
186 .\".B index
187 .\"the database indexer,
188 .\".B liblber
189 .\"the ASN.1 BER library,
190 .\".B module
191 .\"the dynamic module loader,
192 .\".B operation
193 .\"the LDAP operation processors,
194 .\".B sasl
195 .\"the SASL authentication subsystem,
196 .\".B schema
197 .\"the schema processor, and
198 .\".B tls
199 .\"the TLS library interface. This is not an exhaustive list; there are many
200 .\"other subsystems and more are added over time.
201 .\"
202 .\"The levels are, in order of decreasing priority:
203 .\".B emergency, alert, critical, error, warning, notice, information, entry,
204 .\".B args, results, detail1, detail2
205 .\"An integer may be used instead, with 0 corresponding to
206 .\".B emergency
207 .\"up to 11 for
208 .\".BR detail2 .
209 .\"The
210 .\".B entry
211 .\"level logs function entry points,
212 .\".B args
213 .\"adds function call parameters, and
214 .\".B results
215 .\"adds the function results to the logs.
216 .\"The
217 .\".B detail1
218 .\"and
219 .\".B detail2
220 .\"levels add even more low level detail from individual functions.
221 .TP
222 .B defaultsearchbase <dn>
223 Specify a default search base to use when client submits a
224 non-base search request with an empty base DN.
225 .TP
226 .B disallow <features>
227 Specify a set of features (separated by white space) to
228 disallow (default none).
229 .B bind_anon
230 disables acceptance of anonymous bind requests.
231 .B bind_simple
232 disables simple (bind) authentication.
233 .B bind_krbv4
234 disables Kerberos V4 (bind) authentication.
235 .B tls_2_anon
236 disables Start TLS from forcing session to anonymous status (see also
237 .BR tls_authc ).
238 .B tls_authc
239 disables StartTLS if authenticated (see also
240 .BR tls_2_anon ).
241 .HP
242 .hy 0
243 .B ditcontentrule "(\ <oid>\
244  [NAME\ <name>]\
245  [DESC\ <description>]\
246  [OBSOLETE]\
247  [AUX\ <oids>]\
248  [MUST\ <oids>]\
249  [MAY\ <oids>]\
250  [NOT\ <oids>]\ )"
251 .RS
252 Specify an DIT Content Rule using the LDAPv3 syntax defined in RFC 2252.
253 The slapd parser extends the RFC 2252 definition by allowing string
254 forms as well as numeric OIDs to be used for the attribute OID and
255 attribute syntax OID.
256 (See the
257 .B objectidentifier
258 description.) 
259 .RE
260 .TP
261 .B gentlehup { on | off }
262 A SIGHUP signal will only cause a 'gentle' shutdown-attempt:
263 .B Slapd
264 will stop listening for new connections, but will not close the
265 connections to the current clients.  Future write operations return
266 unwilling-to-perform, though.  Slapd terminates when all clients
267 have closed their connections (if they ever do), or \- as before \-
268 if it receives a SIGTERM signal.  This can be useful if you wish to
269 terminate the server and start a new
270 .B slapd
271 server
272 .B with another database,
273 without disrupting the currently active clients.
274 The default is off.  You may wish to use
275 .B idletimeout
276 along with this option.
277 .TP
278 .B idletimeout <integer>
279 Specify the number of seconds to wait before forcibly closing
280 an idle client connection.  A idletimeout of 0 disables this
281 feature.  The default is 0.
282 .TP
283 .B include <filename>
284 Read additional configuration information from the given file before
285 continuing with the next line of the current file.
286 .TP
287 .B limits <who> <limit> [<limit> [...]]
288 Specify time and size limits based on who initiated an operation.
289 The argument
290 .B who
291 can be any of
292 .RS
293 .RS
294 .TP
295 anonymous | users | [dn[.<style>]=]<pattern>
296
297 .RE
298 with
299 .RS
300 .TP
301 <style> ::= exact | base | one | subtree | children | regex | anonymous
302
303 .RE
304 The term
305 .B anonymous
306 matches all unauthenticated clients.
307 the term
308 .B users
309 matches all authenticated clients;
310 otherwise a
311 .B regex
312 dn pattern is assumed unless otherwise specified by qualifying 
313 the (optional) key string
314 .B dn
315 with 
316 .B exact
317 or
318 .B base
319 (which are synonyms), to require an exact match; with
320 .BR one, 
321 to require exactly one level of depth match; with
322 .BR subtree,
323 to allow any level of depth match, including the exact match; with
324 .BR children,
325 to allow any level of depth match, not including the exact match;
326 .BR regex
327 explicitly requires the (default) match based on regular expression
328 pattern, as detailed in
329 .BR regex (7).
330 Finally,
331 .B anonymous
332 matches unbound operations; the 
333 .B pattern
334 field is ignored.
335 The same behavior is obtained by using the 
336 .B anonymous
337 form of the
338 .B who
339 clause.
340
341 The currently supported limits are 
342 .B size
343 and 
344 .BR time.
345
346 The syntax for time limits is 
347 .BR time[.{soft|hard}]=<integer> ,
348 where 
349 .BR integer
350 is the number of seconds slapd will spend answering a search request.
351 If no time limit is explicitly requested by the client, the 
352 .BR soft
353 limit is used; if the requested time limit exceeds the
354 .BR hard
355 limit, an "Administrative limit exceeded" is returned.
356 If the
357 .BR hard
358 limit is set to 0 or to the keyword "soft", the soft limit is used 
359 in either case; if it is set to -1 or to the keyword "none", 
360 no hard limit is enforced.
361 Explicit requests for time limits smaller or equal to the
362 .BR hard 
363 limit are honored.
364 If no flag is set, the value is assigned to the 
365 .BR soft 
366 limit, and the
367 .BR hard
368 limit is set to zero, to preserve the original behavior.
369
370 The syntax for size limits is
371 .BR size[.{soft|hard|unchecked}]=<integer> ,
372 where
373 .BR integer
374 is the maximum number of entries slapd will return answering a search 
375 request.
376 If no size limit is explicitly requested by the client, the
377 .BR soft
378 limit is used; if the requested size limit exceeds the
379 .BR hard
380 limit, an "Administrative limit exceeded" is returned.
381 If the 
382 .BR hard
383 limit is set to 0 or to the keyword "soft", the soft limit is used 
384 in either case; if it is set to -1 or to the keyword "none", 
385 no hard limit is enforced.
386 Explicit requests for size limits smaller or equal to the
387 .BR hard
388 limit are honored.
389 The
390 .BR unchecked
391 flag sets a limit on the number of candidates a search request is allowed
392 to examine.
393 If the selected candidates exceed the 
394 .BR unchecked
395 limit, the search will abort with "Unwilling to perform".
396 If it is set to -1 or to the keyword "none", no limit is applied (the default).
397 If no flag is set, the value is assigned to the
398 .BR soft 
399 limit, and the
400 .BR hard
401 limit is set to zero, to preserve the original behavior.
402
403 In case of no match, the global limits are used.
404 The default values are the same of
405 .BR sizelimit
406 and
407 .BR timelimit ;
408 no limit is set on 
409 .BR unchecked .
410
411 If 
412 .B pagedResults
413 control is defined, additional size limits may be enforced; the syntax is
414 .BR size.pr={<integer>|noEstimate} ,
415 where
416 .BR integer
417 is the max page size if no explicit limit is set; the keyword
418 .BR noEstimate
419 inhibits the server to return an estimate of the total number
420 of entries that will be returned.
421 .RE
422 .\".TP
423 .\".B logfile <filename>
424 .\"Specify a file for recording debug log messages. By default these messages
425 .\"only go to stderr and are not recorded anywhere else. Specifying a logfile
426 .\"copies messages to both stderr and the logfile.
427 .TP
428 .B loglevel <integer>
429 Specify the level at which debugging statements and operation 
430 statistics should be syslogged (currently logged to the
431 .BR syslogd (8) 
432 LOG_LOCAL4 facility).  Log levels are additive, and available levels
433 are:
434 .RS
435 .RS
436 .PD 0
437 .TP
438 .B 1
439 trace function calls
440 .TP
441 .B 2
442 debug packet handling
443 .TP
444 .B 4
445 heavy trace debugging
446 .TP
447 .B 8
448 connection management
449 .TP
450 .B 16
451 print out packets sent and received
452 .TP
453 .B 32
454 search filter processing
455 .TP
456 .B 64
457 configuration file processing
458 .TP
459 .B 128
460 access control list processing
461 .TP
462 .B 256
463 stats log connections/operations/results
464 .TP
465 .B 512
466 stats log entries sent
467 .TP
468 .B 1024
469 print communication with shell backends
470 .TP
471 .B 2048
472 entry parsing
473 .PD
474 .RE
475 .RE
476 .TP
477 .B moduleload <filename>
478 Specify the name of a dynamically loadable module to load. The filename
479 may be an absolute path name or a simple filename. Non-absolute names
480 are searched for in the directories specified by the
481 .B modulepath
482 option. This option and the
483 .B modulepath
484 option are only usable if slapd was compiled with --enable-modules.
485 .TP
486 .B modulepath <pathspec>
487 Specify a list of directories to search for loadable modules. Typically
488 the path is colon-separated but this depends on the operating system.
489 .HP
490 .hy 0
491 .B objectclass "(\ <oid>\
492  [NAME\ <name>]\
493  [DESC\ <description]\
494  [OBSOLETE]\
495  [SUP\ <oids>]\
496  [{ ABSTRACT | STRUCTURAL | AUXILIARY }]\
497  [MUST\ <oids>] [MAY\ <oids>] )"
498 .RS
499 Specify an objectclass using the LDAPv3 syntax defined in RFC 2252.
500 The slapd parser extends the RFC 2252 definition by allowing string
501 forms as well as numeric OIDs to be used for the object class OID.
502 (See the
503 .B
504 objectidentifier
505 description.)  Object classes are "STRUCTURAL" by default.
506 .RE
507 .TP
508 .B objectidentifier <name> "{ <oid> | <name>[:<suffix>] }"
509 Define a string name that equates to the given OID. The string can be used
510 in place of the numeric OID in objectclass and attribute definitions. The
511 name can also be used with a suffix of the form ":xx" in which case the
512 value "oid.xx" will be used.
513 .TP
514 .B password-hash <hash>
515 This option sets the hash to be used in generation of user
516 passwords, stored in userPassword, during processing of
517 LDAP Password Modify Extended Operations (RFC 3052).
518 The <hash> must be one of
519 .BR {SSHA} ,
520 .BR {SHA} ,
521 .BR {SMD5} ,
522 .BR {MD5} ,
523 .BR {CRYPT} ,
524 and
525 .BR {CLEARTEXT} .
526 The default is
527 .BR {SSHA} .
528
529 .B {SHA}
530 and
531 .B {SSHA}
532 use the SHA-1 algorithm (FIPS 160-1), the latter with a seed.
533
534 .B {MD5}
535 and
536 .B {SMD5}
537 use the MD5 algorithm (RFC 1321), the latter with a seed.
538
539 .B {CRYPT}
540 uses the
541 .BR crypt (3).
542
543 .B {CLEARTEXT}
544 indicates that the new password should be
545 added to userPassword as clear text.
546
547 Note that this option does not alter the normal user applications
548 handling of userPassword during LDAP Add, Modify, or other LDAP operations.
549 .TP
550 .B password\-crypt\-salt\-format <format>
551 Specify the format of the salt passed to
552 .BR crypt (3)
553 when generating {CRYPT} passwords (see
554 .BR password\-hash )
555 during processing of LDAP Password Modify Extended Operations (RFC 3062).
556
557 This string needs to be in
558 .BR sprintf (3)
559 format and may include one (and only one) %s conversion.
560 This conversion will be substituted with a string random
561 characters from [A\-Za\-z0\-9./].  For example, "%.2s"
562 provides a two character salt and "$1$%.8s" tells some
563 versions of crypt(3) to use an MD5 algorithm and provides
564 8 random characters of salt.  The default is "%s", which
565 provides 31 characters of salt.
566 .TP
567 .B pidfile <filename>
568 The ( absolute ) name of a file that will hold the 
569 .B slapd
570 server's process ID ( see
571 .BR getpid (2)
572 ) if started without the debugging command line option.
573 .TP
574 .B referral <url>
575 Specify the referral to pass back when
576 .BR slapd (8)
577 cannot find a local database to handle a request.
578 If specified multiple times, each url is provided.
579 .TP
580 .B replica-argsfile
581 The ( absolute ) name of a file that will hold the 
582 .B slurpd
583 server's command line options
584 if started without the debugging command line option.
585 .TP
586 .B replica-pidfile
587 The ( absolute ) name of a file that will hold the 
588 .B slurpd
589 server's process ID ( see
590 .BR getpid (2)
591 ) if started without the debugging command line option.
592 .TP
593 .B require <conditions>
594 Specify a set of conditions (separated by white space) to
595 require (default none).
596 The directive may be specified globally and/or per-database.
597 .B bind
598 requires bind operation prior to directory operations.
599 .B LDAPv3
600 requires session to be using LDAP version 3.
601 .B authc
602 requires authentication prior to directory operations.
603 .B SASL
604 requires SASL authentication prior to directory operations.
605 .B strong
606 requires strong authentication prior to directory operations.
607 The strong keyword allows protected "simple" authentication
608 as well as SASL authentication.
609 .B none
610 may be used to require no conditions (useful for clearly globally
611 set conditions within a particular database).
612 .TP
613 .B reverse-lookup on | off
614 Enable/disable client name unverified reverse lookup (default is 
615 .BR off 
616 if compiled with --enable-rlookups).
617 .TP
618 .B rootDSE <file>
619 Specify the name of an LDIF(5) file containing user defined attributes
620 for the root DSE.  These attributes are returned in addition to the
621 attributes normally produced by slapd.
622 .TP
623 .B sasl-authz-policy <policy>
624 Used to specify which rules to use for SASL Proxy Authorization. Proxy
625 authorization allows a client to authenticate to the server using one
626 user's credentials, but specify a different identity to use for authorization
627 and access control purposes. It essentially allows user A to login as user
628 B, using user A's password.
629 The
630 .B none
631 flag disables proxy authorization. This is the default setting.
632 The
633 .B from
634 flag will use rules in the
635 .I saslAuthzFrom
636 attribute of the authorization DN.
637 The
638 .B to
639 flag will use rules in the
640 .I saslAuthzTo
641 attribute of the authentication DN.
642 The
643 .B both
644 flag will allow both of the above. The rules are simply regular expressions
645 specifying which DNs are allowed to perform proxy authorization. The
646 .I saslAuthzFrom
647 attribute in an entry specifies which other users
648 are allowed to proxy login to this entry. The
649 .I saslAuthzTo
650 attribute in
651 an entry specifies which other users this user can authorize as.  Use of
652 .I saslAuthzTo
653 rules can be easily
654 abused if users are allowed to write arbitrary values to this attribute.
655 In general the
656 .I saslAuthzTo
657 attribute must be protected with ACLs such that
658 only privileged users can modify it.
659 .TP
660 .B sasl-host <fqdn>
661 Used to specify the fully qualified domain name used for SASL processing.
662 .TP
663 .B sasl-realm <realm>
664 Specify SASL realm.  Default is empty.
665 .TP
666 .B sasl-regexp <match> <replace>
667 Used by the SASL mechanism to convert a SASL authenticated 
668 username to an LDAP DN used for authorization purposes.  Note that
669 the resultant DN need not refer to an existing entry to be considered
670 valid.  When an authorization request is received, the SASL 
671 .B USERNAME, REALM, 
672 and
673 .B MECHANISM
674 are taken, when available, and combined into a SASL name of the 
675 form
676 .RS
677 .RS
678 .TP
679 .B UID=<username>[[,CN=<realm>],CN=<mechanism>,]CN=auth
680
681 .RE
682 This SASL name is then compared against the
683 .B match
684 regular expression, and if the match is successful, the SASL name is
685 replaced with the
686 .B replace
687 string. If there are wildcard strings in the 
688 .B match
689 regular expression that are enclosed in parenthesis, e.g. 
690 .RS
691 .TP
692 .B UID=([^,]*),CN=.*
693
694 .RE
695 then the portion of the SASL name that matched the wildcard will be stored
696 in the numbered placeholder variable $1. If there are other wildcard strings
697 in parenthesis, the matching strings will be in $2, $3, etc. up to $9. The 
698 placeholders can then be used in the 
699 .B replace
700 string, e.g. 
701 .RS
702 .TP
703 .B UID=$1,OU=Accounts,DC=example,DC=com 
704
705 .RE
706 The replaced SASL name can be either a DN or an LDAP URI. If the
707 latter, the server will use the URI to search its own database(s)
708 and, if the search returns exactly one entry, the SASL name is
709 replaced by the DN of that entry.   The LDAP URI must have no
710 hostport, attrs, or extensions components, e.g.
711 .RS
712 .TP
713 .B ldap:///OU=Accounts,DC=example,DC=com??one?(UID=$1)
714
715 .RE
716 Multiple 
717 .B sasl-regexp 
718 options can be given in the configuration file to allow for multiple matching 
719 and replacement patterns. The matching patterns are checked in the order they 
720 appear in the file, stopping at the first successful match.
721
722 .\".B Caution:
723 .\"Because the plus sign + is a character recognized by the regular expression engine,
724 .\"and it will appear in SASL names that include a REALM, be careful to escape the
725 .\"plus sign with a backslash \\+ to remove the character's special meaning.
726 .RE
727 .TP
728 .B sasl-secprops <properties>
729 Used to specify Cyrus SASL security properties.
730 The
731 .B none
732 flag (without any other properties) causes the flag properties
733 default, "noanonymous,noplain", to be cleared.
734 The
735 .B noplain
736 flag disables mechanisms susceptible to simple passive attacks.
737 The
738 .B noactive
739 flag disables mechanisms susceptible to active attacks.
740 The
741 .B nodict
742 flag disables mechanisms susceptible to passive dictionary attacks.
743 The
744 .B noanonymous
745 flag disables mechanisms which support anonymous login.
746 The
747 .B forwardsec
748 flag require forward secrecy between sessions.
749 The
750 .B passcred
751 require mechanisms which pass client credentials (and allow
752 mechanisms which can pass credentials to do so).
753 The
754 .B minssf=<factor> 
755 property specifies the minimum acceptable
756 .I security strength factor
757 as an integer approximate to effective key length used for
758 encryption.  0 (zero) implies no protection, 1 implies integrity
759 protection only, 56 allows DES or other weak ciphers, 112
760 allows triple DES and other strong ciphers, 128 allows RC4,
761 Blowfish and other modern strong ciphers.  The default is 0.
762 The
763 .B maxssf=<factor> 
764 property specifies the maximum acceptable
765 .I security strength factor
766 as an integer (see minssf description).  The default is INT_MAX.
767 The
768 .B maxbufsize=<size> 
769 property specifies the maximum security layer receive buffer
770 size allowed.  0 disables security layers.  The default is 65536.
771 .TP
772 .B schemadn <dn>
773 Specify the distinguished name for the subschema subentry that
774 controls the entries on this server.  The default is "cn=Subschema".
775 .TP
776 .B security <factors>
777 Specify a set of factors (separated by white space) to require.
778 An integer value is associated with each factor and is roughly
779 equivalent of the encryption key length to require.  A value
780 of 112 is equivalent to 3DES, 128 to Blowfish, etc..
781 The directive may be specified globally and/or per-database.
782 .B ssf=<n>
783 specifies the overall security strength factor.
784 .B transport=<n>
785 specifies the transport security strength factor.
786 .B tls=<n>
787 specifies the TLS security strength factor.
788 .B sasl=<n>
789 specifies the SASL security strength factor.
790 .B update_ssf=<n>
791 specifies the overall security strength factor to require for
792 directory updates.
793 .B update_transport=<n>
794 specifies the transport security strength factor to require for
795 directory updates.
796 .B update_tls=<n>
797 specifies the TLS security strength factor to require for
798 directory updates.
799 .B update_sasl=<n>
800 specifies the SASL security strength factor to require for
801 directory updates.
802 .B simple_bind=<n>
803 specifies the security strength factor required for
804 .I simple
805 username/password authentication.
806 Note that the
807 .B transport
808 factor is measure of security provided by the underlying transport,
809 e.g. ldapi:// (and eventually IPSEC).  It is not normally used.
810 .TP
811 .B sizelimit {<integer>|unlimited}
812 .TP
813 .B sizelimit size[.{soft|hard|unchecked}]=<integer> [...]
814 Specify the maximum number of entries to return from a search operation.
815 The default size limit is 500.
816 Use
817 .B -1
818 or 
819 .B unlimited
820 to specify no limits.
821 The second format allows a fine grain setting of the size limits.
822 Extra args can be added on the same line.
823 See
824 .BR limits
825 for an explanation of the different flags.
826 .TP
827 .B sockbuf_max_incoming <integer>
828 Specify the maximum incoming LDAP PDU size for anonymous sessions.
829 The default is 262143.
830 .TP
831 .B sockbuf_max_incoming_auth <integer>
832 Specify the maximum incoming LDAP PDU size for authenticated sessions.
833 The default is 4194303.
834 .TP
835 .B srvtab <filename>
836 Specify the srvtab file in which the kerberos keys necessary for
837 authenticating clients using kerberos can be found. This option is only
838 meaningful if you are using Kerberos authentication.
839 .TP
840 .B threads <integer>
841 Specify the maximum size of the primary thread pool.
842 The default is 16.
843 .TP
844 .B timelimit {<integer>|unlimited}
845 .TP
846 .B timelimit time[.{soft|hard}]=<integer> [...]
847 Specify the maximum number of seconds (in real time)
848 .B slapd
849 will spend answering a search request.  The default time limit is 3600.
850 Use
851 .B -1
852 or 
853 .B unlimited
854 to specify no limits.
855 The second format allows a fine grain setting of the time limits.
856 Extra args can be added on the same line.
857 See
858 .BR limits
859 for an explanation of the different flags.
860 .TP
861 .B ucdata-path <path>
862 Specify the path to the directory containing the Unicode character
863 tables. The default path is DATADIR/ucdata.
864 .SH TLS OPTIONS
865 If
866 .B slapd
867 is built with support for Transport Layer Security, there are more options
868 you can specify.
869 .TP
870 .B TLSCipherSuite <cipher-suite-spec>
871 Permits configuring what ciphers will be accepted and the preference order.
872 <cipher-suite-spec> should be a cipher specification for OpenSSL.  Example:
873
874 TLSCipherSuite HIGH:MEDIUM:+SSLv2
875
876 To check what ciphers a given spec selects, use:
877
878 openssl ciphers -v <cipher-suite-spec>
879 .TP
880 .B TLSCACertificateFile <filename>
881 Specifies the file that contains certificates for all of the Certificate
882 Authorities that
883 .B slapd
884 will recognize.
885 .TP
886 .B TLSCACertificatePath <path>
887 Specifies the path of a directory that contains Certificate Authority
888 certificates in separate individual files. Usually only one of this
889 or the TLSCACertificateFile is used.
890 .TP
891 .B TLSCertificateFile <filename>
892 Specifies the file that contains the
893 .B slapd
894 server certificate.
895 .TP
896 .B TLSCertificateKeyFile <filename>
897 Specifies the file that contains the
898 .B slapd
899 server private key that matches the certificate stored in the
900 .B TLSCertificateFile
901 file.  Currently, the private key must not be protected with a password, so
902 it is of critical importance that it is protected carefully. 
903 .TP
904 .B TLSRandFile <filename>
905 Specifies the file to obtain random bits from when /dev/[u]random
906 is not available.  Generally set to the name of the EGD/PRNGD socket.
907 The environment variable RANDFILE can also be used to specify the filename.
908 .TP
909 .B TLSVerifyClient <level>
910 Specifies what checks to perform on client certificates in an
911 incoming TLS session, if any.
912 The
913 .B <level>
914 can be specified as one of the following keywords:
915 .RS
916 .TP
917 .B never
918 This is the default.
919 .B slapd
920 will not ask the client for a certificate.
921 .TP
922 .B allow
923 The client certificate is requested.  If no certificate is provided,
924 the session proceeds normally.  If a bad certificate is provided,
925 it will be ignored and the session proceeds normally.
926 .TP
927 .B try
928 The client certificate is requested.  If no certificate is provided,
929 the session proceeds normally.  If a bad certificate is provided,
930 the session is immediately terminated.
931 .TP
932 .B demand | hard | true
933 These keywords are all equivalent, for compatibility reasons.
934 The client certificate is requested.  If no certificate is provided,
935 or a bad certificate is provided, the session is immediately terminated.
936
937 Note that a valid client certificate is required in order to use the
938 SASL EXTERNAL authentication mechanism with a TLS session.  As such,
939 a non-default
940 .B TLSVerifyClient
941 setting must be chosen to enable SASL EXTERNAL authentication.
942 .RE
943 .SH GENERAL BACKEND OPTIONS
944 Options in this section only apply to the configuration file section
945 for the specified backend.  They are supported by every
946 type of backend.
947 .TP
948 .B backend <databasetype>
949 Mark the beginning of a backend definition. <databasetype>
950 should be one of
951 .B bdb,
952 .B dnssrv,
953 .B ldap,
954 .B ldbm,
955 .B meta,
956 .B monitor,
957 .B null,
958 .B passwd,
959 .B perl,
960 .B shell,
961 .B sql,
962 or
963 .B tcl,
964 depending on which backend will serve the database.
965
966 .SH GENERAL DATABASE OPTIONS
967 Options in this section only apply to the configuration file section
968 for the database in which they are defined.  They are supported by every
969 type of backend.  Note that the
970 .B database
971 and at least one
972 .B suffix
973 option are mandatory for each database.
974 .TP
975 .B database <databasetype>
976 Mark the beginning of a new database instance definition. <databasetype>
977 should be one of
978 .B bdb,
979 .B dnssrv,
980 .B ldap,
981 .B ldbm,
982 .B meta,
983 .B monitor,
984 .B null,
985 .B passwd,
986 .B perl,
987 .B shell,
988 .B sql,
989 or
990 .B tcl,
991 depending on which backend will serve the database.
992 .TP
993 .B lastmod on | off
994 Controls whether
995 .B slapd
996 will automatically maintain the 
997 modifiersName, modifyTimestamp, creatorsName, and 
998 createTimestamp attributes for entries.  By default, lastmod is on.
999 .TP
1000 .B maxderefdepth <depth>
1001 Specifies the maximum number of aliases to dereference when trying to
1002 resolve an entry, used to avoid infinite alias loops. The default is 1.
1003 .TP
1004 .B readonly on | off
1005 This option puts the database into "read-only" mode.  Any attempts to 
1006 modify the database will return an "unwilling to perform" error.  By
1007 default, readonly is off.
1008 .HP
1009 .hy 0
1010 .B replica uri=ldap[s]://<hostname>[:port]|host=<hostname>[:port] 
1011 .B [starttls=yes|critical]
1012 .B [suffix=<suffix> [...]]
1013 .B bindmethod=simple|sasl [binddn=<simple DN>] [credentials=<simple password>]
1014 .B [saslmech=<SASL mech>] [secprops=<properties>] [realm=<realm>]
1015 .B [authcId=<authentication ID>] [authzId=<authorization ID>]
1016 .B [attr[!]=<attr list>]
1017 .RS
1018 Specify a replication site for this database.  Refer to the "OpenLDAP 
1019 Administrator's Guide" for detailed information on setting up a replicated
1020 .B slapd
1021 directory service. Zero or more
1022 .B suffix
1023 instances can be used to select the subtrees that will be replicated
1024 (defaults to all the database). 
1025 .B host
1026 is deprecated in favor of the
1027 .B uri
1028 option.
1029 .B uri
1030 allows the replica LDAP server to be specified as an LDAP URI. 
1031 A
1032 .B bindmethod
1033 of
1034 .B simple
1035 requires the options
1036 .B binddn 
1037 and
1038 .B credentials  
1039 and should only be used when adequate security services 
1040 (e.g TLS or IPSEC) are in place. A
1041 .B bindmethod 
1042 of
1043 .B sasl 
1044 requires the option
1045 .B saslmech. 
1046 Specific security properties (as with the
1047 .B sasl-secprops
1048 keyword above) for a SASL bind can be set with the
1049 .B secprops
1050 option. A non-default SASL realm can be set with the
1051 .B realm
1052 option.
1053 If the 
1054 .B mechanism
1055 will use Kerberos, a kerberos instance should be given in 
1056 .B authcId.
1057 An
1058 .B attr list
1059 can be given after the 
1060 .B attr
1061 keyword to allow the selective replication of the listed attributes only;
1062 if the optional 
1063 .B !
1064 mark is used, the list is considered exclusive, i.e. the listed attributes
1065 are not replicated.
1066 If an objectClass is listed, all the related attributes
1067 are (are not) replicated.
1068 .RE
1069 .TP
1070 .B replogfile <filename>
1071 Specify the name of the replication log file to log changes to.  
1072 The replication log is typically written by
1073 .BR slapd (8)
1074 and read by
1075 .BR slurpd (8).
1076 See
1077 .BR slapd.replog (5)
1078 for more information.  The specified file should be located
1079 in a directory with limited read/write/execute access as the replication
1080 logs may contain sensitive information.
1081 .TP
1082 .B rootdn <dn>
1083 Specify the distinguished name that is not subject to access control 
1084 or administrative limit restrictions for operations on this database.
1085 This DN may or may not be associated with an entry.  An empty root
1086 DN (the default) specifies no root access is to be granted.  It is
1087 recommended that the rootdn only be specified when needed (such as
1088 when initially populating a database).  If the rootdn is within
1089 a namingContext (suffix) of the database, a simple bind password
1090 may also be provided using the
1091 .B rootpw
1092 directive.
1093 .TP
1094 .B rootpw <password>
1095 Specify a password (or hash of the password) for the rootdn.  The
1096 password can only be set if the rootdn is within the namingContext
1097 (suffix) of the database.
1098 This option accepts all RFC 2307 userPassword formats known to
1099 the server (see 
1100 .B password-hash
1101 description) as well as cleartext.
1102 .BR slappasswd (8) 
1103 may be used to generate a hash of a password.  Cleartext
1104 and \fB{CRYPT}\fP passwords are not recommended.  If empty
1105 (the default), authentication of the root DN is by other means
1106 (e.g. SASL).  Use of SASL is encouraged.
1107 .TP
1108 .B suffix <dn suffix>
1109 Specify the DN suffix of queries that will be passed to this 
1110 backend database.  Multiple suffix lines can be given and at least one is 
1111 required for each database definition.
1112 If the suffix of one database is "inside" that of another, the database
1113 with the inner suffix must come first in the configuration file.
1114 .TP
1115 .B subordinate
1116 Specify that the current backend database is a subordinate of another
1117 backend database. A subordinate database may have only one suffix. This
1118 option may be used to glue multiple databases into a single namingContext.
1119 If the suffix of the current database is within the namingContext of a
1120 superior database, searches against the superior database will be
1121 propagated to the subordinate as well. All of the databases
1122 associated with a single namingContext should have identical rootdns.
1123 Behavior of other LDAP operations is unaffected by this setting. In
1124 particular, it is not possible to use moddn to move an entry from
1125 one subordinate to another subordinate within the namingContext.
1126 .HP
1127 .hy 0
1128 .B syncrepl id=<replica ID>
1129 .B provider=ldap[s]://<hostname>[:port]
1130 .B [type=refreshOnly|refreshAndPersist]
1131 .B [interval=dd:hh:mm:ss]
1132 .B [searchbase=<base DN>]
1133 .B [filter=<filter str>]
1134 .B [scope=sub|one|base]
1135 .B [attrs=<attr list>]
1136 .B [attrsonly]
1137 .B [sizelimit=<limit>]
1138 .B [timelimit=<limit>]
1139 .B [schemachecking=on|off]
1140 .B [updatedn=<dn>]
1141 .B [bindmethod=simple|sasl]
1142 .B [binddn=<dn>]
1143 .B [saslmech=<mech>]
1144 .B [authcid=<identity>]
1145 .B [authzid=<identity>]
1146 .B [credentials=<passwd>]
1147 .B [realm=<realm>]
1148 .B [secprops=<properties>]
1149 .RS
1150 Specify the current database as a replica which is kept up-to-date with the 
1151 master content by establishing the current
1152 .BR slapd (8)
1153 as a replication consumer site running a
1154 .B syncrepl
1155 replication engine.
1156 The replica content is kept synchronized to the master content using
1157 the LDAP Content Synchronization protocol. Refer to the
1158 "OpenLDAP Administrator's Guide" for detailed information on
1159 setting up a replicated
1160 .B slapd
1161 directory service using the 
1162 .B syncrepl
1163 replication engine.
1164 .B id
1165 identifies the current
1166 .B syncrepl
1167 directive within the database.
1168 It is a non-negative integer having no more than three digits.
1169 .B provider
1170 specifies the replication provider site containing the master content
1171 as an LDAP URI. If <port> is not given, the standard LDAP port number
1172 (389 or 636) is used. The content of the
1173 .B syncrepl
1174 replica is defined using a search
1175 specification as its result set. The consumer
1176 .B slapd
1177 will send search requests to the provider
1178 .B slapd
1179 according to the search specification. The search specification includes
1180 .B searchbase, scope, filter, attrs, attrsonly, sizelimit,
1181 and
1182 .B timelimit
1183 parameters as in the normal search specification.
1184 The search specification for the LDAP Content Synchronization operation
1185 has the same value syntax and the same default values as in the
1186 .BR ldapsearch (1)
1187 client search tool.
1188 The LDAP Content Synchronization protocol has two operation types.
1189 In the
1190 .B refreshOnly
1191 operation, the next synchronization search operation
1192 is periodically rescheduled at an interval time (specified by 
1193 .B interval
1194 parameter; 1 day by default)
1195 after each synchronization operation finishes.
1196 In the
1197 .B refreshAndPersist
1198 operation, a synchronization search remains persistent in the provider slapd.
1199 Further updates to the master replica will generate
1200 .B searchResultEntry
1201 to the consumer slapd as the search responses to the persistent
1202 synchronization search. The schema checking can be enforced at the LDAP Sync
1203 consumer site by turning on the
1204 .B schemachecking
1205 parameter. The default is off.
1206 The
1207 .B updatedn
1208 parameter specifies the DN in the consumer site
1209 which is allowed to make changes to the replica.
1210 The DN should have read/write access to the replica database.
1211 A
1212 .B bindmethod
1213 of 
1214 .B simple
1215 requires the options 
1216 .B binddn
1217 and 
1218 .B credentials
1219 and should only be used when adequate security services
1220 (e.g. TLS or IPSEC) are in place.
1221 A
1222 .B bindmethod
1223 of
1224 .B sasl
1225 requires the option
1226 .B saslmech.
1227 Depending on the mechanism, an authentication identity and/or
1228 credentials can be specified using
1229 .B authcid
1230 and
1231 .B credentials.
1232 The
1233 .B authzid
1234 parameter may be used to specify an authorization identity.
1235 Specific security properties (as with the
1236 .B sasl-secprops
1237 keyword above) for a SASL bind can be set with the
1238 .B secprops
1239 option. A non default SASL realm can be set with the
1240 .B realm 
1241 option.
1242 .RE
1243 .TP
1244 .B updatedn <dn>
1245 This option is only applicable in a slave
1246 .B slapd. 
1247 It specifies the DN permitted to update (subject to access controls)
1248 the replica (typically, this is the DN
1249 .BR slurpd (8)
1250 binds to update the replica).
1251 .TP
1252 .B updateref <url>
1253 Specify the referral to pass back when
1254 .BR slapd (8)
1255 is asked to modify a replicated local database.
1256 If specified multiple times, each url is provided.
1257
1258 .SH DATABASE-SPECIFIC OPTIONS
1259 Each database may allow specific configuration options; they are
1260 documented separately in the backends' manual pages.
1261 .SH BACKENDS
1262 The following backends can be compiled into slapd.
1263 They are documented in the
1264 .BR slapd-<backend> (5)
1265 manual pages.
1266 .TP
1267 .B bdb
1268 This is the recommended backend for a normal slapd database.
1269 However, it takes more care than with the LDBM backend to configure
1270 it properly.
1271 It uses the Sleepycat Berkeley DB (BDB) package to store data.
1272 .TP
1273 .B ldbm
1274 This is the database backend which is easiest to configure.
1275 However, it does not offer the data durability features of the BDB
1276 backend.
1277 It uses Berkeley DB or GDBM to store data.
1278 .TP
1279 .B dnssrv
1280 This backend is experimental.
1281 It serves up referrals based upon SRV resource records held in the
1282 Domain Name System.
1283 .TP
1284 .B ldap
1285 This backend acts as a proxy to forward incoming requests to another
1286 LDAP server.
1287 .TP
1288 .B meta
1289 This backend performs basic LDAP proxying with respect to a set of
1290 remote LDAP servers. It is an enhancement of the ldap backend. The
1291 proxy cache extension of meta backend provides answering of search
1292 requests from the proxy using results of previously cached requests.
1293 .TP
1294 .B monitor
1295 This backend provides information about the running status of the slapd
1296 daemon.
1297 .TP
1298 .B null
1299 Operations in this backend succeed but do nothing.
1300 .TP
1301 .B passwd
1302 This backend is provided for demonstration purposes only.
1303 It serves up user account information from the system
1304 .BR passwd (5)
1305 file.
1306 .TP
1307 .B perl
1308 This backend embeds a
1309 .BR perl (1)
1310 interpreter into slapd.
1311 It runs Perl subroutines to implement LDAP operations.
1312 .TP
1313 .B shell
1314 This backend executes external programs to implement LDAP operations.
1315 It is is primarily intended to be used in prototypes.
1316 .TP
1317 .B sql
1318 This backend is experimental.
1319 It services LDAP requests from an SQL database.
1320 .TP
1321 .B tcl
1322 This backend is experimental.
1323 It embeds a
1324 .BR Tcl (3tcl)
1325 interpreter into slapd.
1326 It runs Tcl commands to implement LDAP operations.
1327 .SH EXAMPLES
1328 .LP
1329 Here is a short example of a configuration file:
1330 .LP
1331 .RS
1332 .nf
1333 include   SYSCONFDIR/schema/core.schema
1334 pidfile   LOCALSTATEDIR/slapd.pid
1335
1336 # Subtypes of "name" (e.g. "cn" and "ou") with the
1337 # option ";x-hidden" can be searched for/compared,
1338 # but are not shown.  See \fBslapd.access\fP(5).
1339 attributeoptions x-hidden lang-
1340 access to attr=name;x-hidden by * =cs
1341
1342 database  bdb
1343 suffix    "dc=our-domain,dc=com"
1344 # The database directory MUST exist prior to
1345 # running slapd AND should only be accessible
1346 # by the slapd/tools. Mode 0700 recommended.
1347 directory LOCALSTATEDIR/openldap-data
1348 # Indices to maintain
1349 index     objectClass  eq
1350 index     cn,sn,mail   pres,eq,approx,sub
1351
1352 # We serve small clients that do not handle referrals,
1353 # so handle remote lookups on their behalf.
1354 database  ldap
1355 suffix    ""
1356 uri       ldap://ldap.some-server.com/
1357 lastmod   off
1358 .fi
1359 .RE
1360 .LP
1361 "OpenLDAP Administrator's Guide" contains a longer annotated
1362 example of a configuration file.
1363 The original ETCDIR/slapd.conf is another example.
1364 .SH FILES
1365 .TP
1366 ETCDIR/slapd.conf
1367 default slapd configuration file
1368 .SH SEE ALSO
1369 .BR ldap (3),
1370 .BR slapd-bdb (5),
1371 .BR slapd-dnssrv (5),
1372 .BR slapd-ldap (5),
1373 .BR slapd-ldbm (5),
1374 .BR slapd-meta (5),
1375 .BR slapd-monitor (5),
1376 .BR slapd-null (5),
1377 .BR slapd-passwd (5),
1378 .BR slapd-perl (5),
1379 .BR slapd-shell (5),
1380 .BR slapd-sql (5),
1381 .BR slapd-tcl (5),
1382 .BR slapd.access (5),
1383 .BR slapd.plugin (5),
1384 .BR slapd.replog (5),
1385 .BR slapd (8),
1386 .BR slapadd (8),
1387 .BR slapcat (8),
1388 .BR slapindex (8),
1389 .BR slappasswd (8),
1390 .BR slurpd (8),
1391 .LP
1392 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
1393 .SH ACKNOWLEDGEMENTS
1394 .B OpenLDAP
1395 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
1396 .B OpenLDAP
1397 is derived from University of Michigan LDAP 3.3 Release.