Active Directory Authentication
How to configure BindPlane OP to use Active Directory for Authentication
important
🚧 This feature is only available in BindPlane OP Enterprise. Learn more here.
BindPlane OP supports Active Directory for authentication. Active Directory allows users to offload authentication and authorization duties to their Active Directory server. BindPlane's Role-Based Access Control works in conjunction with Active Directory.
1. Prerequisites
Before you begin, make sure the following requirements are met.
- You have a BindPlane Enterprise License key
- The BindPlane server has network access to the Active Directory Server's Hostname or IP address
- You know the Base Distinguished Name (base dn) of your Active Directory server.
- You understand that the first user to log into BindPlane will become the BindPlane administrator
- Additional users will need to be invited by the administrator
2. Configuration
Active Directory configuration will differ depending on the platform BindPlane is deployed to. Linux users should follow the Linux section. Kubernetes Helm users should follow the Kubernetes section.
2.1. Linux
If you have not previously installed BindPlane, review the installation procedure here.
On the Linux server hosting BindPlane, execute the init
command to reconfigure BindPlane.
Respond to the prompts until you reach the "Choose an authentication method" prompt. Select "Active Directory".
In this example, the Active Directory server's IP address is 192.168.1.2
. The Bind username is bindplane-ldap
.
For "Base DN", we are using dc=corp,dc=net
, which will allow any Active Directory user to authenticate
to BindPlane using their sAMAccountName
or userPrincipalName
name.
The configuration file at /etc/bindplane/config.yaml
will look like this.
Once BindPlane is configured and restarted, log into BindPlane to become the Organization Administrator.
If you have trouble logging in, proceed to the Troubleshooting section.
2.1.1. TLS
TLS is supported. When re-run the init
command from step 2.1. Select yes when prompted to enable TLS.
2.2. Kubernetes
BindPlane is deployed to Kubernetes using the BindPlane OP Helm Chart.
If you have not previously deployed BindPlane, review Kubernetes Installation guide before proceeding.
The Helm chart supports Active Directory by configuring the auth.type
and auth.ldap
value options.
In this example, the values file contains the same values used in the Linux example.
Deploy or update your existing Helm deployment to include the new authentication options.
2.2.1. TLS
The BindPlane Helm chart supports TLS and mutual TLS. Before configuring TLS, you must create a Kubernetes secret containing the TLS certificate authority and optional mutual TLS client certificate key-pair.
In this example, the CA certificate is located at ca.crt
and the (optional) client keypair is located
at client.crt
and client.key
. Update the namespace and file names to match your environment.
Once the secret ldap-tls
is created, update your values file to include the TLS options.
For TLS, configure the TLS certificate authority.
For mutual TLS, configure the TLS certificate authority and client key-pair.
2.3. Restrict Access
Despite being able to authenticate, users require an invitation before they can successfully log into BindPlane. This means you do not need to restrict which LDAP users and groups can authenticate.
If you wish to restrict the user base, you can do so by updating your search filter to include an Active Directory group.
The default search filter will attempt to match the user's username to sAMAccountName
or userPrincipalName
.
You can restrict the search filter by including a memberOf
filter. In this example, we are requiring
that the user be part of the bindplane
group.
Working with search filters can be difficult and error-prone, see the Troubleshooting section
for example usage of the ldapsearch
command.
3. Troubleshooting
3.1 LDAP Search
The ldapsearch utility is useful for interacting with Active Directory. You can use it to describe a user or group.
If you are using TLS, set the following environment variable.
If you are using mutual TLS, set the following environment variables in addition
to LDAPTLS_CACERT
.
3.2 Third Party Documentation
- Search filter names https://learn.microsoft.com/en-us/windows/win32/ad/naming-properties
- Understanding search filters https://confluence.atlassian.com/kb/how-to-write-ldap-search-filters-792496933.html