×
Menu

Configuring multiple LDAP servers

You can connect up to 50 different LDAP servers with aqua. Each will be checked one-by-one, when authenticating the users.
 
The configuration can be extended by adding a proper index in the key names of the configuration . The indexes will define, in which order the servers are taken for authentication. You can give any index you like, from 1-50, for example:
 
    <add key="LDAP.1.ServerAddress" value="aquatest-ldap" />
    <add key="LDAP.1.ServerPort" value="389" />
    <add key="LDAP.1.UseSSL" value="false" />
    <add key="LDAP.1.BaseDN" value="ou=aqua,dc=aquatest-ldap,dc=andagon,dc=com" />
    <add key="LDAP.1.UsernameFilter" value="uid={0}" />
    <add key="LDAP.1.DiscoveryUserDN" value="" />
    <add key="LDAP.1.DiscoveryUserPassword" value="" />
 
In order to configure multiple servers, just copy the configuration as often as needed and change the indexes and addresses.
 
We keep backward compatibility with previous configuration. Old configurations will work without the necessity to change them.