[Samba] Re: any way to specify multiple LDAP servers for Samba to authenticate against?

2004-12-20 Thread Jason Joines
Adam Tauno Williams wrote:
	Is there any way to specify multiple LDAP servers for Samba to 
authenticate against?
List multiple LDAP passdb backends.

I had been using
ldap server = myldapserver
instead of passdb backend and didn't see anything about specifying 
multiple servers.  Didn't know about

passdb backend = ldapsam:ldap://ldap-1.example.com 
ldap://ldap-2.example.com;

Thanks for the info.
Jason
===
--
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/listinfo/samba


Re: [Samba] Re: any way to specify multiple LDAP servers for Samba to authenticate against?

2004-12-20 Thread Adam Tauno Williams
 I had been using
 ldap server = myldapserver
 instead of passdb backend and didn't see anything about specifying 
 multiple servers.  Didn't know about
 passdb backend = ldapsam:ldap://ldap-1.example.com 
 ldap://ldap-2.example.com;

This gives you redundancy, you will search the second DSA only if the
first is non-responsive.

If you want to actually check two seperate DSA's (if an account doesn't
exist on the first one) you need to do -

passdb backend = ldapsam:ldap://ldap-1.example.com;
ldapsam:ldap://ldap-2.example.com;


-- 
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/listinfo/samba