2020-02-29 00:43:59 +00:00
---
layout: default
title: LDAP
parent: Authentication backends
grand_parent: Configuration
nav_order: 2
---
# LDAP
**Authelia** supports using a LDAP server as the users database.
## Configuration
```yaml
authentication_backend:
2020-04-11 04:46:07 +00:00
disable_reset_password: false
2020-05-04 19:39:25 +00:00
refresh_interval: 5m
2020-04-11 04:46:07 +00:00
ldap:
2020-11-27 09:59:22 +00:00
implementation: custom
2020-04-11 04:46:07 +00:00
url: ldap://127.0.0.1
2020-12-03 05:23:52 +00:00
start_tls: false
2021-01-04 10:28:55 +00:00
tls:
2021-04-11 11:25:03 +00:00
server_name: ldap.example.com
2021-01-04 10:28:55 +00:00
skip_verify: false
minimum_version: TLS1.2
2020-04-11 04:46:07 +00:00
base_dn: dc=example,dc=com
2021-04-11 11:25:03 +00:00
username_attribute: uid
2020-04-11 04:46:07 +00:00
additional_users_dn: ou=users
users_filter: (& ({username_attribute}={input})(objectClass=person))
additional_groups_dn: ou=groups
groups_filter: (& (member={dn})(objectclass=groupOfNames))
2021-04-11 11:25:03 +00:00
group_name_attribute: cn
mail_attribute: mail
display_name_attribute: displayname
user: cn=admin,dc=example,dc=com
password: password
```
2020-11-27 09:59:22 +00:00
2021-04-11 11:25:03 +00:00
## Options
2020-06-19 10:50:21 +00:00
2021-04-11 11:25:03 +00:00
### implementation
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
default: custom
{: .label .label-config .label-blue }
required: no
{: .label .label-config .label-green }
< / div >
2020-11-27 09:59:22 +00:00
2021-04-11 11:25:03 +00:00
Configures the LDAP implementation used by Authelia.
2020-11-27 09:59:22 +00:00
2021-04-11 11:25:03 +00:00
See the [Implementation Guide ](#implementation-guide ) for information.
2020-02-29 00:43:59 +00:00
2021-04-11 11:25:03 +00:00
### url
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
required: yes
{: .label .label-config .label-red }
< / div >
2020-04-15 23:46:51 +00:00
2021-04-11 11:25:03 +00:00
The LDAP URL which consists of a scheme, address, and port. Format is `<scheme>://<address>:<port>` or
`<scheme>://<address>` where scheme is either `ldap` or `ldaps` .
2020-12-16 00:31:39 +00:00
2020-12-29 19:33:57 +00:00
If utilising an IPv6 literal address it must be enclosed by square brackets:
2021-04-11 11:25:03 +00:00
2020-12-16 00:31:39 +00:00
```yaml
url: ldap://[fd00:1111:2222:3333::1]
```
2021-04-11 11:25:03 +00:00
### start_tls
< div markdown = "1" >
type: boolean
{: .label .label-config .label-purple }
default: false
{: .label .label-config .label-blue }
required: no
{: .label .label-config .label-green }
< / div >
Enables use of the LDAP StartTLS process which is not commonly used. You should only configure this if you know you need
it. The initial connection will be over plain text, and Authelia will try to upgrade it with the LDAP server. LDAPS
URL's are slightly more secure.
### tls
2020-12-03 05:23:52 +00:00
2021-04-11 11:25:03 +00:00
Controls the TLS connection validation process. You can see how to configure the tls
section [here ](../index.md#tls-configuration ).
2020-12-03 05:23:52 +00:00
2021-04-11 11:25:03 +00:00
### base_dn
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
required: yes
{: .label .label-config .label-red }
< / div >
2020-12-03 05:23:52 +00:00
2021-04-11 11:25:03 +00:00
Sets the base distinguished name container for all LDAP queries. If your LDAP domain is example.com this is usually
`dc=example,dc=com` , however you can fine tune this to be more specific for example to only include objects inside the
authelia OU: `ou=authelia,dc=example,dc=com` . This is prefixed with the [additional_users_dn ](#additional_users_dn ) for
user searches and [additional_groups_dn ](#additional_groups_dn ) for groups searches.
2020-12-03 05:23:52 +00:00
2021-04-11 11:25:03 +00:00
### username_attribute
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
required: no
{: .label .label-config .label-green }
< / div >
2020-12-03 05:23:52 +00:00
2021-04-11 11:25:03 +00:00
The LDAP attribute that maps to the username in Authelia. The default value is dependent on the [implementation ](#implementation ),
refer to the [attribute defaults ](#attribute-defaults ) for more information.
### additional_users_dn
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
required: no
{: .label .label-config .label-green }
< / div >
Additional LDAP path to append to the [base_dn ](#base_dn ) when searching for users. Useful if you want to restrict
exactly which OU to get users from for either security or performance reasons. For example setting it to
`ou=users,ou=people` with a base_dn set to `dc=example,dc=com` will mean user searches will occur in
`ou=users,ou=people,dc=example,dc=com` . The default value is dependent on the [implementation ](#implementation ), refer
to the [attribute defaults ](#attribute-defaults ) for more information.
### users_filter
< div markdown = "1" >
type: string
{: .label .label-config .label-purple }
required: no
{: .label .label-config .label-green }
< / div >
The LDAP filter to narrow down which users are valid. This is important to set correctly as to exclude disabled users.
The default value is dependent on the [implementation ](#implementation ), refer to the
[attribute defaults ](#attribute-defaults ) for more information.
### additional_groups_dn
Similar to [additional_users_dn ](#additional_users_dn ) but it applies to group searches.
### groups_filter
2021-04-16 01:44:37 +00:00
Similar to [users_filter ](#users_filter ) but it applies to group searches. In order to include groups the memeber is not
a direct member of, but is a member of another group that is a member of those (i.e. recursive groups), you may try
using the following filter which is currently only tested against Microsoft Active Directory:
`(&(member:1.2.840.113556.1.4.1941:={dn})(objectClass=group)(objectCategory=group))`
2021-04-11 11:25:03 +00:00
### mail_attribute
The attribute to retrieve which contains the users email addresses. This is important for the device registration and
password reset processes.
The user must have an email address in order for Authelia to perform
identity verification when a user attempts to reset their password or
register a second factor device.
### display_name_attribute
The attribute to retrieve which is shown on the Web UI to the user when they log in.
### user
The distinguished name of the user paired with the password to bind with for lookup and password change operations.
### password
The password of the user paired with the user to bind with for lookup and password change operations.
Can also be defined using a [secret ](../secrets.md ) which is the recommended for containerized deployments.
## Implementation Guide
2020-11-27 09:59:22 +00:00
There are currently two implementations, `custom` and `activedirectory` . The `activedirectory` implementation
must be used if you wish to allow users to change or reset their password as Active Directory
2021-04-11 11:25:03 +00:00
uses a custom attribute for this, and an input format other implementations do not use. The long term
intention of this is to have logical defaults for various RFC implementations of LDAP.
2020-11-27 09:59:22 +00:00
### Defaults
The below tables describes the current attribute defaults for each implementation.
2021-04-11 11:25:03 +00:00
#### Attribute defaults
2020-11-27 09:59:22 +00:00
This table describes the attribute defaults for each implementation. i.e. the username_attribute is
described by the Username column.
|Implementation |Username |Display Name|Mail|Group Name|
|:-------------:|:------------:|:----------:|:--:|:--------:|
|custom |n/a |displayname |mail|cn |
|activedirectory|sAMAccountName|displayname |mail|cn |
2021-04-11 11:25:03 +00:00
#### Filter defaults
2020-11-27 09:59:22 +00:00
2021-04-11 11:25:03 +00:00
The filters are probably the most important part to get correct when setting up LDAP.
You want to exclude disabled accounts. The active directory example has two attribute
filters that accomplish this as an example (more examples would be appreciated). The
userAccountControl filter checks that the account is not disabled and the pwdLastSet
2020-11-27 09:59:22 +00:00
makes sure that value is not 0 which means the password requires changing at the next login.
|Implementation |Users Filter |Groups Filter|
|:-------------:|:------------:|:-----------:|
|custom |n/a |n/a |
2021-07-14 10:30:25 +00:00
|activedirectory|(&(| ({username_attribute}={input})({mail_attribute}={input}))(sAMAccountType=805306368)(!(userAccountControl:1.2.840.113556.1.4.803:=2))(!(pwdLastSet=0)))|(& (member={dn})(objectClass=group)(objectCategory=group))|
2020-11-27 09:59:22 +00:00
2020-05-04 19:39:25 +00:00
2021-07-14 10:30:25 +00:00
_**Note:**_ The Active Directory filter `(sAMAccountType=805306368)` is exactly the same as
`(&(objectCategory=person)(objectClass=user))` except that the former is more performant, you can read more about this
and other Active Directory filters on the [TechNet wiki ](https://social.technet.microsoft.com/wiki/contents/articles/5392.active-directory-ldap-syntax-filters.aspx ).
2020-05-04 19:39:25 +00:00
## Refresh Interval
This setting takes a [duration notation ](../index.md#duration-notation-format ) that sets the max frequency
2021-04-11 11:25:03 +00:00
for how often Authelia contacts the backend to verify the user still exists and that the groups stored
2020-05-04 19:39:25 +00:00
in the session are up to date. This allows us to destroy sessions when the user no longer matches the
user_filter, or deny access to resources as they are removed from groups.
In addition to the duration notation, you may provide the value `always` or `disable` . Setting to `always`
2021-04-11 11:25:03 +00:00
is the same as setting it to 0 which will refresh on every request, `disable` turns the feature off, which is
2020-05-04 19:39:25 +00:00
not recommended. This completely prevents Authelia from refreshing this information, and it would only be
2021-04-11 11:25:03 +00:00
refreshed when the user session gets destroyed by other means like inactivity, session expiration or logging
2020-05-04 19:39:25 +00:00
out and in.
This value can be any value including 0, setting it to 0 would automatically refresh the session on
every single request. This means Authelia will have to contact the LDAP backend every time an element
2021-04-11 11:25:03 +00:00
on a page loads which could be substantially costly. It's a trade-off between load and security that
2020-05-04 19:39:25 +00:00
you should adapt according to your own security policy.
2020-04-15 23:46:51 +00:00
## Important notes
Users must be uniquely identified by an attribute, this attribute must obviously contain a single value and
be guaranteed by the administrator to be unique. If multiple users have the same value, Authelia will simply
fail authenticating the user and display an error message in the logs.
In order to avoid such problems, we highly recommended you follow https://www.ietf.org/rfc/rfc2307.txt by using
2020-11-27 09:59:22 +00:00
`sAMAccountName` for Active Directory and `uid` for other implementations as the attribute holding the
2020-04-15 23:46:51 +00:00
unique identifier for your users.
2020-11-27 13:30:27 +00:00
As of versions > `4.24.0` the `users_filter` must include the `username_attribute` placeholder, not including this will
result in Authelia throwing an error.
In versions < = `4.24.0` not including the `username_attribute` placeholder will cause issues with the session refresh
2021-04-11 11:25:03 +00:00
and will result in session resets when the refresh interval has expired, default of 5 minutes.