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