]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapd.access.5
a72e56db5c2f5340ff60227cbf7935610d287a88
[openldap] / doc / man / man5 / slapd.access.5
1 .TH SLAPD.ACCESS 5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2004 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .SH NAME
5 slapd.access \- access configuration for slapd, the stand-alone LDAP daemon
6 .SH SYNOPSIS
7 ETCDIR/slapd.conf
8 .SH DESCRIPTION
9 The 
10 .BR slapd.conf (5)
11 file contains configuration information for the
12 .BR slapd (8)
13 daemon. This configuration file is also used by the
14 .BR slurpd (8)
15 replication daemon and by the SLAPD tools
16 .BR slapacl (8),
17 .BR slapadd (8),
18 .BR slapauth (8),
19 .BR slapcat (8),
20 .BR slapdn (8),
21 .BR slapindex (8),
22 and
23 .BR slaptest (8).
24 .LP
25 The
26 .B slapd.conf
27 file consists of a series of global configuration options that apply to
28 .B slapd
29 as a whole (including all backends), followed by zero or more database
30 backend definitions that contain information specific to a backend
31 instance.
32 .LP
33 The general format of
34 .B slapd.conf
35 is as follows:
36 .LP
37 .nf
38     # comment - these options apply to every database
39     <global configuration options>
40     # first database definition & configuration options
41     database    <backend 1 type>
42     <configuration options specific to backend 1>
43     # subsequent database definitions & configuration options
44     ...
45 .fi
46 .LP
47 Both the global configuration and each backend-specific section can
48 contain access information.  Backend-specific access control
49 directives are used for those entries that belong to the backend,
50 according to their naming context.  In case no access control
51 directives are defined for a backend or those which are defined are
52 not applicable, the directives from the global configuration section
53 are then used.
54 .LP
55 For entries not held in any backend (such as a root DSE), the
56 directives of the first backend (and any global directives) are
57 used.
58 .LP
59 Arguments that should be replaced by actual text are shown in
60 brackets <>.
61 .SH THE ACCESS DIRECTIVE
62 The structure of the access control directives is
63 .TP
64 .B access to <what> "[ by <who> <access> [ <control> ] ]+"
65 Grant access (specified by 
66 .BR <access> ) 
67 to a set of entries and/or attributes (specified by 
68 .BR <what> ) 
69 by one or more requestors (specified by 
70 .BR <who> ).
71 .SH THE <WHAT> FIELD
72 The field
73 .BR <what>
74 specifies the entity the access control directive applies to.
75 It can have the forms
76 .LP
77 .nf
78         [dn[.<dnstyle>]=]<dnpattern>
79         filter=<ldapfilter>
80         attrs=<attrlist>[ val[.<attrstyle>]=<attrval>]
81 .fi
82 .LP
83 with
84 .LP
85 .nf
86         <dnstyle>={{exact|base(object)}|regex
87                 |one(level)|sub(tree)|children}
88         <attrlist>={<attr>|[{!|@}]<objectClass>}[,<attrlist>]
89         <attrstyle>={{exact|base(object)}|regex
90                 |one(level)|sub(tree)|children}
91 .fi
92 .LP
93 The statement
94 .B dn=<dnpattern>
95 selects the entries based on their naming context.
96 The 
97 .B dn=
98 part is optional.
99 The
100 .B <dnpattern>
101 is a string representation of the entry's DN.
102 The wildcard
103 .B *
104 stands for all the entries, and it is implied if no
105 .B dn
106 form is given.
107 .LP
108 The 
109 .B <dnstyle> 
110 is also optional; however, it is recommended to specify both the 
111 .B dn=
112 and the
113 .B <dnstyle>
114 to avoid ambiguities.
115 .B Base 
116 (synonym of
117 .BR baseObject ),
118 the default,
119 or
120 .B exact 
121 (an alias of 
122 .BR base )
123 indicates the entry whose DN is equal to the
124 .BR <dnpattern> ;
125 .B one
126 (synonym of
127 .BR onelevel )
128 indicates all the entries immediately below the
129 .BR <dnpattern> ,
130 .B sub
131 (synonym of
132 .BR subtree )
133 indicates all entries in the subtree at the
134 .BR <dnpattern> ,
135 .B children
136 indicates all the entries below (subordinate to) the 
137 .BR <dnpattern> .
138 .LP
139 If the
140 .B <dnstyle>
141 qualifier is
142 .BR regex ,
143 then 
144 .B <dnpattern>
145 is a regular expression pattern,
146 as detailed in
147 .BR regex (7),
148 matching a normalized string representation of the entry's DN.
149 The regex form of the pattern does not (yet) support UTF-8.
150 .LP
151 The statement
152 .B filter=<ldapfilter>
153 selects the entries based on a valid LDAP filter as described in RFC 2254.
154 A filter of
155 .B (objectClass=*)
156 is implied if no
157 .B filter
158 form is given.
159 .LP
160 The statement
161 .B attrs=<attrlist>
162 selects the attributes the access control rule applies to.
163 It is a comma-separated list of attribute types, plus the special names
164 .BR entry ,
165 indicating access to the entry itself, and
166 .BR children ,
167 indicating access to the entry's children. ObjectClass names may also
168 be specified in this list, which will affect all the attributes that
169 are required and/or allowed by that objectClass.
170 Actually, names in 
171 .B <attrlist>
172 that are prefixed by
173 .B @
174 are directly treated as objectClass names.  A name prefixed by
175 .B !
176 is also treated as an objectClass, but in this case the access rule
177 affects the attributes that are not required nor allowed 
178 by that objectClass.
179 If no
180 .B attrs
181 form is given, 
182 .B attrs=@extensibleObject
183 is implied, i.e. all attributes are addressed.
184 .LP
185 Using the form
186 .B attrs=<attr> val[.<style>]=<attrval>
187 specifies access to a particular value of a single attribute.
188 In this case, only a single attribute type may be given. A value
189 .B <style>
190 of
191 .B exact
192 (the default) uses the attribute's equality matching rule to compare the
193 value. If the value
194 .B <style>
195 is
196 .BR regex ,
197 the provided value is used as a regular expression pattern.
198 If the attribute has DN syntax, the value
199 .B <style>
200 can be any of
201 .BR base ,
202 .BR onelevel ,
203 .B subtree
204 or
205 .BR children ,
206 resulting in base, onelevel, subtree or children match, respectively.
207 .LP
208 The dn, filter, and attrs statements are additive; they can be used in sequence 
209 to select entities the access rule applies to based on naming context,
210 value and attribute type simultaneously.
211 .SH THE <WHO> FIELD
212 The field
213 .B <who>
214 indicates whom the access rules apply to.
215 Multiple 
216 .B <who>
217 statements can appear in an access control statement, indicating the
218 different access privileges to the same resource that apply to different
219 accessee.
220 It can have the forms
221 .LP
222 .nf
223         *
224         anonymous
225         users
226         self
227
228         dn[.<dnstyle>[,<modifier>]]=<DN>
229         dnattr=<attrname>
230         group[/<objectclass>[/<attrname>]]
231                 [.<groupstyle>]=<group>
232         peername[.<peernamestyle>]=<peername>
233         sockname[.<style>]=<sockname>
234         domain[.<domainstyle>[,<modifier>]]=<domain>
235         sockurl[.<style>]=<sockurl>
236         set[.<setstyle>]=<pattern>
237
238         ssf=<n>
239         transport_ssf=<n>
240         tls_ssf=<n>
241         sasl_ssf=<n>
242
243         aci=<attrname>
244 .fi
245 .LP
246 with
247 .LP
248 .nf
249         <style>={exact|regex|expand}
250         <dnstyle>={{exact|base(object)}|regex
251                 |one(level)|sub(tree)|children}
252         <groupstyle>={exact|expand}
253         <peernamestyle>={<style>|ip|path}
254         <domainstyle>={exact|regex|sub(tree)}
255         <setstyle>={exact|regex}
256         <modifier>={expand}
257 .fi
258 .LP
259 They may be specified in combination.
260 .LP
261 .nf
262 .fi
263 .LP
264 The wildcard
265 .B *
266 refers to everybody.
267 .LP
268 The keyword
269 .B anonymous
270 means access is granted to unauthenticated clients; it is mostly used 
271 to limit access to authentication resources (e.g. the
272 .B userPassword
273 attribute) to unauthenticated clients for authentication purposes.
274 .LP
275 The keyword
276 .B users
277 means access is granted to authenticated clients.
278 .LP
279 The keyword
280 .B self
281 means access to an entry is allowed to the entry itself (e.g. the entry
282 being accessed and the requesting entry must be the same).
283 .LP
284 The statement
285 .B dn=<DN>
286 means that access is granted to the matching DN.
287 The optional style qualifier
288 .B dnstyle
289 allows the same choices of the dn form of the
290 .B <what>
291 field.  In addition, the
292 .B regex
293 style can exploit substring substitution of submatches in the
294 .B <what>
295 dn.regex clause by using the form
296 .BR $<digit> ,
297 with 
298 .B digit
299 ranging from 1 to 9.
300 Since the dollar character is used to indicate a substring replacement,
301 the dollar character that is used to indicate match up to the end of
302 the string must be escaped by a second dollar character, e.g.
303 .LP
304 .nf
305     access to dn.regex="^(.+,)?uid=([^,]+),dc=[^,]+,dc=com$"
306         by dn.regex="^uid=$2,dc=[^,]+,dc=com$$" write
307 .fi
308 .LP
309 The style qualifier
310 allows an optional
311 .BR modifier .
312 At present, the only type allowed is 
313 .BR expand ,
314 which causes substring substitution of submatches to take place
315 even if 
316 .B dnstyle
317 is not 
318 .BR regex .
319 Note that the 
320 .B regex 
321 dnstyle in the above example may be of use only if the 
322 .B by
323 clause needs to be a regex; otherwise, if the
324 value of the second (from the right)
325 .B dc=
326 portion of the DN in the above example were fixed, the form
327 .LP
328 .nf
329     access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
330         by dn.exact,expand="uid=$2,dc=example,dc=com" write
331 .fi
332 .LP
333 could be used; if it had to match the value in the 
334 .B what
335 clause, the form
336 .LP
337 .nf
338     access to dn.regex="^(.+,)?uid=([^,]+),dc=([^,]+),dc=com$"
339         by dn.exact,expand="uid=$2,dc=$3,dc=com" write
340 .fi
341 .LP
342 could be used.
343 .LP
344 It is perfectly useless to give any access privileges to a DN 
345 that exactly matches the
346 .B rootdn
347 of the database the ACLs apply to, because it implicitly
348 possesses write privileges for the entire tree of that database.
349 Actually, access control is bypassed for the
350 .BR rootdn ,
351 to solve the intrinsic chicken-and-egg problem.
352 .LP
353 The statement
354 .B dnattr=<attrname>
355 means that access is granted to requests whose DN is listed in the
356 entry being accessed under the 
357 .B <attrname>
358 attribute.
359 .LP
360 The statement
361 .B group=<group>
362 means that access is granted to requests whose DN is listed
363 in the group entry whose DN is given by
364 .BR <group> .
365 The optional parameters
366 .B <objectclass>
367 and
368 .B <attrname>
369 define the objectClass and the member attributeType of the group entry.
370 The optional style qualifier
371 .B <style>
372 can be
373 .BR expand ,
374 which means that
375 .B <group>
376 will be expanded as a replacement string (but not as a regular expression)
377 according to regex (7), and
378 .BR exact ,
379 which means that exact match will be used.
380 .LP
381 For static groups, the specified attributeType must have
382 .B DistinguishedName
383 or
384 .B NameAndOptionalUID
385 syntax. For dynamic groups the attributeType must
386 be a subtype of the
387 .B labeledURI
388 attributeType. Only LDAP URIs of the form
389 .B ldap:///<base>??<scope>?<filter>
390 will be evaluated in a dynamic group, by searching the local server only.
391 .LP
392 The statements
393 .BR peername=<peername> ,
394 .BR sockname=<sockname> ,
395 .BR domain=<domain> ,
396 and
397 .BR sockurl=<sockurl>
398 mean that the contacting host IP (in the form 
399 .BR "IP=<ip>:<port>" )
400 or the contacting host named pipe file name (in the form
401 .B "PATH=<path>"
402 if connecting through a named pipe) for
403 .BR peername ,
404 the named pipe file name for
405 .BR sockname ,
406 the contacting host name for
407 .BR domain ,
408 and the contacting URL for
409 .BR sockurl
410 are compared against
411 .B pattern
412 to determine access.
413 The same
414 .B style
415 rules for pattern match described for the
416 .B group
417 case apply, plus the
418 .B regex
419 style, which implies submatch
420 .B expand
421 and
422 .BR regex (7)
423 match of the corresponding connection parameters.
424 The
425 .B exact
426 style of the
427 .BR peername
428 clause (the default) implies a case-exact match on the client's
429 .BR IP , 
430 including the
431 .B "IP="
432 prefix and the trailing
433 .BR ":<port>" , 
434 or the client's 
435 .BR path ,
436 including the
437 .B "PATH="
438 prefix if connecting through a named pipe.
439 The special
440 .B ip
441 style interprets the pattern as 
442 .BR <peername>=<ip>[%<mask>][{<n>}] ,
443 where
444 .B <ip>
445 and 
446 .B <mask>
447 are dotted digit representations of the IP and the mask, while
448 .BR <n> ,
449 delimited by curly brackets, is an optional port.
450 When checking access privileges, the IP portion of the
451 .BR peername 
452 is extracted, eliminating the
453 .B "IP="
454 prefix and the
455 .B ":<port>"
456 part, and it is compared against the
457 .B <ip>
458 portion of the pattern after masking with
459 .BR <mask> .
460 As an example, 
461 .B peername.ip=127.0.0.1
462 allows connections only from localhost,
463 .B peername.ip=192.168.1.0%255.255.255.0 
464 allows connections from any IP in the 192.168.1 class C domain, and
465 .B peername.ip=192.168.1.16%255.255.255.240{9009}
466 allows connections from any IP in the 192.168.1.[16-31] range 
467 of the same domain, only if port 9009 is used.
468 The special 
469 .B path
470 style eliminates the 
471 .B "PATH="
472 prefix from the 
473 .B peername
474 when connecting through a named pipe, and performs an exact match 
475 on the given pattern.
476 The
477 .BR domain 
478 clause also allows the
479 .B subtree
480 style, which succeeds when a fully qualified name exactly matches the
481 .BR domain
482 pattern, or its trailing part, after a 
483 .BR dot ,
484 exactly matches the 
485 .BR domain
486 pattern.
487 The 
488 .B expand
489 style is allowed, implying an
490 .B exact 
491 match with submatch expansion; the use of 
492 .B expand 
493 as a style modifier is considered more appropriate.
494 As an example,
495 .B domain.subtree=example.com
496 will match www.example.com, but will not match www.anotherexample.com.
497 The
498 .B domain
499 of the contacting host is determined by performing a DNS reverse lookup.
500 As this lookup can easily be spoofed, use of the
501 .B domain
502 statement is strongly discouraged.  By default, reverse lookups are disabled.
503 The optional
504 .B domainstyle
505 qualifier of the
506 .B domain
507 clause allows a
508 .B modifier
509 option; the only value currently supported is
510 .BR expand ,
511 which causes substring substitution of submatches to take place even if
512 the 
513 .B domainstyle
514 is not 
515 .BR regex ,
516 much like the analogous usage in 
517 .B dn
518 clause.
519 .LP
520 The statement
521 .B set=<pattern>
522 is undocumented yet.
523 .LP
524 The statement
525 .B aci=<attrname>
526 means that the access control is determined by the values in the
527 .B attrname
528 of the entry itself.
529 ACIs are experimental; they must be enabled at compile time.
530 .LP
531 The statements
532 .BR ssf=<n> ,
533 .BR transport_ssf=<n> ,
534 .BR tls_ssf=<n> ,
535 and
536 .BR sasl_ssf=<n>
537 set the required Security Strength Factor (ssf) required to grant access.
538 .SH THE <ACCESS> FIELD
539 The field
540 .B <access> ::= [self]{<level>|<priv>}
541 determines the access level or the specific access privileges the
542 .B who 
543 field will have.
544 Its component are defined as
545 .LP
546 .nf
547         <level> ::= none|auth|compare|search|read|write
548         <priv> ::= {=|+|-}{w|r|s|c|x|0}+
549 .fi
550 .LP
551 The modifier
552 .B self
553 allows special operations like having a certain access level or privilege
554 only in case the operation involves the name of the user that's requesting
555 the access.
556 It implies the user that requests access is bound.
557 An example is the
558 .B selfwrite
559 access to the member attribute of a group, which allows one to add/delete
560 its own DN from the member list of a group, without affecting other members.
561 .LP
562 The 
563 .B level 
564 access model relies on an incremental interpretation of the access
565 privileges.
566 The possible levels are
567 .BR none ,
568 .BR auth ,
569 .BR compare ,
570 .BR search ,
571 .BR read ,
572 and
573 .BR write .
574 Each access level implies all the preceding ones, thus 
575 .B write
576 access will imply all accesses.
577 While
578 .B none
579 is trivial, 
580 .B auth
581 access means that one is allowed access to an attribute to perform
582 authentication/authorization operations (e.g.
583 .BR bind )
584 with no other access.
585 This is useful to grant unauthenticated clients the least possible 
586 access level to critical resources, like passwords.
587 .LP
588 The
589 .B priv
590 access model relies on the explicit setting of access privileges
591 for each clause.
592 The
593 .B =
594 sign resets previously defined accesses; as a consequence, the final 
595 access privileges will be only those defined by the clause.
596 The 
597 .B +
598 and
599 .B -
600 signs add/remove access privileges to the existing ones.
601 The privileges are
602 .B w
603 for write,
604 .B r
605 for read,
606 .B s 
607 for search,
608 .B c 
609 for compare, and
610 .B x
611 for authentication.
612 More than one of the above privileges can be added in one statement.
613 .B 0
614 indicates no privileges and is used only by itself (e.g., +0).
615 .LP
616 The optional field
617 .B <control>
618 controls the flow of access rule application.
619 It can have the forms
620 .LP
621 .nf
622         stop
623         continue
624         break
625 .fi
626 .LP
627 where
628 .BR stop ,
629 the default, means access checking stops in case of match.
630 The other two forms are used to keep on processing access clauses.
631 In detail, the
632 .B continue
633 form allows for other 
634 .B <who>
635 clauses in the same 
636 .B <access>
637 clause to be considered, so that they may result in incrementally altering
638 the privileges, while the
639 .B break
640 form allows for other
641 .B <access>
642 clauses that match the same target to be processed.
643 Consider the (silly) example
644 .LP
645 .nf
646         access to dn.subtree="dc=example,dc=com" attrs=cn
647                 by * =cs break
648
649         access to dn.subtree="ou=People,dc=example,dc=com"
650                 by * +r
651 .fi
652 .LP
653 which allows search and compare privileges to everybody under
654 the "dc=example,dc=com" tree, with the second rule allowing
655 also read in the "ou=People" subtree,
656 or the (even more silly) example
657 .LP
658 .nf
659         access to dn.subtree="dc=example,dc=com" attrs=cn
660                 by * =cs continue
661                 by users +r
662 .fi
663 .LP
664 which grants everybody search and compare privileges, and adds read
665 privileges to authenticated clients.
666 .SH OPERATION REQUIREMENTS
667 Operations require different privileges on different portions of entries.
668 The following summary applies to primary database backends such as
669 the LDBM, BDB, and HDB backends.   Requirements for other backends may
670 (and often do) differ.
671 .LP
672 The
673 .B add
674 operation requires
675 .B write (=w)
676 privileges on the pseudo-attribute 
677 .B entry
678 of the entry being added, and 
679 .B write (=w)
680 privileges on the pseudo-attribute
681 .B children
682 of the entry's parent.
683 .LP
684 The 
685 .B bind
686 operation, when credentials are stored in the directory, requires 
687 .B auth (=x)
688 privileges on the attribute the credentials are stored in (usually
689 .BR userPassword ).
690 .LP
691 The
692 .B compare
693 operation requires 
694 .B compare (=c)
695 privileges on the attribute that is being compared.
696 .LP
697 The
698 .B delete
699 operation requires
700 .B write (=w)
701 privileges on the pseudo-attribute
702 .B entry 
703 of the entry being deleted, and
704 .B write (=w)
705 privileges on the
706 .B children
707 pseudo-attribute of the entry's parent.
708 .LP
709 The
710 .B modify
711 operation requires 
712 .B write (=w)
713 privileges on the attibutes being modified.
714 .LP
715 The
716 .B modrdn
717 operation requires
718 .B write (=w)
719 privileges on the pseudo-attribute
720 .B entry
721 of the entry whose relative DN is being modified,
722 .B write (=w)
723 privileges on the pseudo-attribute
724 .B children
725 of the old and new entry's parents, and
726 .B write (=w)
727 privileges on the attributes that are present in the new relative DN.
728 .B Write (=w)
729 privileges are also required on the attributes that are present 
730 in the old relative DN if 
731 .B deleteoldrdn
732 is set to 1.
733 .LP
734 The
735 .B search
736 operation, for each entry, requires
737 .B search (=s)
738 privileges on the attributes that are defined in the filter.
739 Then, the resulting entries are tested for 
740 .B read (=r)
741 privileges on the pseudo-attribute
742 .B entry
743 (for read access to the entry itself)
744 and for
745 .B read (=r)
746 access on each value of each attribute that is requested.
747 Also, for each
748 .B referral
749 object used in generating continuation references, the operation requires
750 .B read (=r)
751 access on the pseudo-attribute
752 .B entry
753 (for read access to the referral object itself),
754 as well as
755 .B read (=r)
756 access to the attribute holding the referral information
757 (generally the
758 .B ref
759 attribute).
760 .LP
761 Some internal operations and some
762 .B controls
763 require specific access privileges.
764 The
765 .B authzID
766 mapping and the 
767 .B proxyAuthz
768 control require
769 .B auth (=x)
770 privileges on all the attributes that are present in the search filter
771 of the URI regexp maps (the right-hand side of the
772 .B authz-regexp
773 directives).
774 .B Auth (=x)
775 privileges are also required on the
776 .B authzTo
777 attribute of the authorizing identity and/or on the 
778 .B authzFrom
779 attribute of the authorized identity.
780 .SH CAVEATS
781 It is strongly recommended to explicitly use the most appropriate
782 .B <dnstyle>
783 in
784 .B <what>
785 and
786 .B <who>
787 clauses, to avoid possible incorrect specifications of the access rules 
788 as well as for performance (avoid unrequired regex matching when an exact
789 match suffices) reasons.
790 .LP
791 An administrator might create a rule of the form:
792 .LP
793 .nf
794         access to dn.regex="dc=example,dc=com"
795                 by ...
796 .fi
797 .LP
798 expecting it to match all entries in the subtree "dc=example,dc=com".
799 However, this rule actually matches any DN which contains anywhere
800 the substring "dc=example,dc=com".  That is, the rule matches both
801 "uid=joe,dc=example,dc=com" and "dc=example,dc=com,uid=joe".
802 .LP
803 To match the desired subtree, the rule would be more precisely
804 written:
805 .LP
806 .nf
807         access to dn.regex="^(.+,)?dc=example,dc=com$"
808                 by ...
809 .fi
810 .LP
811 For performance reasons, it would be better to use the subtree style.
812 .LP
813 .nf
814         access to dn.subtree="dc=example,dc=com"
815                 by ...
816 .fi
817 .LP
818 When writing submatch rules, it may be convenient to avoid unnecessary
819 .B regex
820 .B <dnstyle>
821 use; for instance, to allow access to the subtree of the user 
822 that matches the
823 .B what
824 clause, one could use
825 .LP
826 .nf
827         access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
828                 by dn.regex="^uid=$2,dc=example,dc=com$$" write
829                 by ...
830 .fi
831 .LP
832 However, since all that is required in the 
833 .B by
834 clause is substring expansion, a more efficient solution is
835 .LP
836 .nf
837         access to dn.regex="^(.+,)?uid=([^,]+),dc=example,dc=com$"
838                 by dn.exact,expand="uid=$2,dc=example,dc=com" write
839                 by ...
840 .fi
841 .LP
842 In fact, while a
843 .B <dnstyle>
844 of
845 .B regex
846 implies substring expansion, 
847 .BR exact ,
848 as well as all the other DN specific
849 .B <dnstyle>
850 values, does not, so it must be explicitly requested.
851 .LP
852 .SH FILES
853 .TP
854 ETCDIR/slapd.conf
855 default slapd configuration file
856 .SH SEE ALSO
857 .BR slapd (8),
858 .BR slapacl (8),
859 .LP
860 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
861 .SH ACKNOWLEDGEMENTS
862 .B OpenLDAP
863 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
864 .B OpenLDAP
865 is derived from University of Michigan LDAP 3.3 Release.