From 75ec81bdd9d1760fad0de0c73d6bc649b3a061fd Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Thu, 20 Aug 2009 15:35:55 +0200 Subject: extended the documentation of LDAP backend Added man pages sections about user and group attribute mapping. Added an example configuration to access an AD server. --- server/examples/sssd.conf | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'server/examples') diff --git a/server/examples/sssd.conf b/server/examples/sssd.conf index d57bed70..90e0c8d1 100644 --- a/server/examples/sssd.conf +++ b/server/examples/sssd.conf @@ -88,3 +88,29 @@ description = Domains served by SSSD ; #if a backend is particularly slow you can raise this timeout here ; timeout = 60 + +# Example LDAP domain where the LDAP server is an Active Directory server. + +; [domains/AD] +; description = LDAP domain with AD server +; enumerate = 0 +; minId = 1000 +; +; provider = ldap +; auth-module = ldap +; ldapUri = ldap://your.ad.server.com +; userSearchBase = cn=users,dc=example,dc=com +; groupSearchBase = cn=users,dc=example,dc=com +; defaultBindDn = cn=Administrator,cn=Users,dc=example,dc=com +; defaultAuthtokType = password +; defaultAuthtok = YOUR_PASSWORD +; userObjectClass = person +; userName = msSFU30Name +; userUidNumber = msSFU30UidNumber +; userGidNumber = msSFU30GidNumber +; userHomeDirectory = msSFU30HomeDirectory +; userShell = msSFU30LoginShell +; userPrincipal = userPrincipalName +; groupObjectClass = group +; groupName = msSFU30Name +; groupGidNumber = msSFU30GidNumber -- cgit