Note that its possible to provide multiple LDAP hosts separated by a space

fixes #11809
This commit is contained in:
Eric Lippmann 2016-12-12 16:42:56 +01:00
parent e030229d7f
commit de94749502
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,8 @@ class LdapResourceForm extends Form
'required' => true,
'label' => $this->translate('Host'),
'description' => $this->translate(
'The hostname or address of the LDAP server to use for authentication'
'The hostname or address of the LDAP server to use for authentication.'
. ' You can also provide multiple hosts separated by a space'
),
'value' => 'localhost'
)

View File

@ -63,7 +63,7 @@ A LDAP resource represents a tree in a LDAP directory. LDAP is usually used for
| Directive | Description |
| ----------------- | ----------- |
| **type** | `ldap` |
| **hostname** | Connect to the LDAP server on the given host. |
| **hostname** | Connect to the LDAP server on the given host. You can also provide multiple hosts separated by a space. |
| **port** | Port number to use for the connection. |
| **root_dn** | Root object of the tree, e.g. `ou=people,dc=icinga,dc=org` |
| **bind_dn** | The user to use when connecting to the server. |