diff options
author | Karolin Seeger <ks@samba.org> | 2008-04-07 15:36:23 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:47:45 -0500 |
commit | fb0d81d8cc05023f75e46b7651d8c296ab4198d1 (patch) | |
tree | e65ed254d3fdb36725e0cbfee1c15e24fa85c7e1 | |
parent | 2f35677db6b453ac67ee75523321fcea50918cb7 (diff) | |
download | samba-fb0d81d8cc05023f75e46b7651d8c296ab4198d1.tar.gz |
Correct usage of multiple LDAP servers as passdb backend. Patch from Björn Jacke <bj@sernet.de>
(This used to be commit 9b9c86c3a4a63a254b45db75b9bbc69ef8896c2f)
-rw-r--r-- | docs/smbdotconf/security/passdbbackend.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/smbdotconf/security/passdbbackend.xml b/docs/smbdotconf/security/passdbbackend.xml index 35c43696fce..487d8b8a9d1 100644 --- a/docs/smbdotconf/security/passdbbackend.xml +++ b/docs/smbdotconf/security/passdbbackend.xml @@ -37,9 +37,9 @@ specifying <parameter moreinfo="none">ldaps://</parameter> in the URL argument. </para> - <para>Multiple servers may also be specified in double-quotes, if your - LDAP libraries supports the LDAP URL notation. - (OpenLDAP does). + <para>Multiple servers may also be specified in double-quotes. + Whether multiple servers are supported or not and the exact + syntax depends on the LDAP library you use. </para> </listitem> @@ -50,9 +50,13 @@ <programlisting> passdb backend = tdbsam:/etc/samba/private/passdb.tdb -or +or multi server LDAP URL with OpenLDAP library: passdb backend = ldapsam:"ldap://ldap-1.example.com ldap://ldap-2.example.com" + +or multi server LDAP URL with Netscape based LDAP library: + +passdb backend = ldapsam:"ldap://ldap-1.example.com ldap-2.example.com" </programlisting> </description> |