LDAP authentication#
Guacamole supports LDAP authentication via an extension available from the main project website. This extension allows users and connections to be stored directly within an LDAP directory. If you have a centralized authentication system that uses LDAP, Guacamole’s LDAP support can be a good way to allow your users to use their existing usernames and passwords to log into Guacamole.
To use the LDAP authentication extension, you will need:
An LDAP directory as storage for all authentication data, such as OpenLDAP.
The ability to modify the schema of your LDAP directory.
The instructions here assume you already have an LDAP directory installed and working, and do not cover the initial setup of such a directory.
Warning
You will need to restart the Guacamole web application in order to complete configuration. Doing this will disconnect all active users, so please:
Do this only at a time that you can tolerate service unavailability, such as a scheduled maintenance window.
Keep in mind that configuration errors may prevent Guacamole from starting back up.
How Guacamole uses LDAP#
If the LDAP extension is installed, Guacamole will authenticate users against your LDAP server by attempting a bind as that user. The given username and password will be submitted to the LDAP server during the bind attempt.
If the bind attempt is successful, the set of available Guacamole connections,
users, and groups are queried from the LDAP directory by executing an LDAP
query as the bound user. Each Guacamole connection is represented within
the directory as a special type of group: guacConfigGroup
. Attributes
associated with the group define the protocol and parameters of the connection,
and users are allowed access to the connection only if they are associated with
that group.
This architecture has a number of benefits:
Your users can use their existing usernames and passwords to log into Guacamole.
You can manage Guacamole connections using the same tool that you already use to manage your LDAP directory, such as Apache Directory Studio.
Existing security restrictions can limit visibility/accessibility of Guacamole connections.
Access to connections can easily be granted and revoked, as each connection is represented by a group.
Important
Though Guacamole connections can be stored within the LDAP directory, this is not required. Connection data can alternatively be stored within a database like MySQL or PostgreSQL as long as the LDAP username matches the username of the database user. Configuring Guacamole to use a database for authentication or connection storage is covered in Database authentication and later in this chapter in Associating LDAP with a database (recommended).
Intalling/Enabling the LDAP extension#
Guacamole is configured differently depending on whether Guacamole was installed natively or using the provided Docker images. The documentation here covers both methods.
Native installations of Guacamole under Apache Tomcat
or similar are configured by modifying the contents of GUACAMOLE_HOME
(Guacamole’s configuration directory), which is located at
/etc/guacamole
by default and may need to be created first:
Download
guacamole-auth-ldap-1.6.0.tar.gz
from the release page for Apache Guacamole 1.6.0 and extract it.Create the
GUACAMOLE_HOME/extensions
directory, if it does not already exist.Copy the
guacamole-auth-ldap-1.6.0.jar
file from the contents of the archive toGUACAMOLE_HOME/extensions/
.Proceed with the configuring Guacamole for the newly installed extension as described below. The extension will be loaded after Guacamole has been restarted.
Note
Download and documentation links for all officially supported extensions for a particular version of Guacamole are always provided in the release notes for that version. The copy of the documentation you are reading now is from Apache Guacamole 1.6.0.
If you are using a different version of Guacamole, please locate that version within the release archives and consult the documentation for that release instead.
Docker installations of Guacamole include a bundled copy of Apache
Tomcat and are configured using environment
variables. The startup process of the Docker image automatically populates
GUACAMOLE_HOME
(Guacamole’s configuration directory) based
on the values of these variables.
- If deploying Guacamole using Docker Compose:
You will need to add at least one relevant environment variable to the
environment
section of yourguacamole/guacamole
container, such as theLDAP_ENABLED
environment variable:LDAP_ENABLED: "true"
- If instead deploying Guacamole by running
docker run
manually: The same environment variable(s) will need to be provided using the
-e
option. For example:$ docker run --name some-guacamole \ -e LDAP_ENABLED="true" \ -d -p 8080:8080 guacamole/guacamole
If LDAP_ENABLED
is set to false
, the extension will NOT be
installed, even if other related environment variables have been set. This can
be used to temporarily disable usage of an extension without needing to remove
all other related configuration.
You don’t strictly need to set LDAP_ENABLED
if other related
environment variables are provided, but the extension will be installed only if
at least one related environment variable is set.
Preparing your LDAP directory (optional)#
Although your LDAP directory already provides a means of storing and authenticating users, Guacamole also needs storage of connection configuration data, such as hostnames and ports, and a means of associating users with connections that they should have access to. You can do this either through modifying the LDAP directory schema, or through using a database like MySQL or PostgreSQL. If you do not wish to use the LDAP directory for connection storage, skip ahead to Associating LDAP with a database (recommended).
If you wish to store connection data directly within the LDAP directory, the
required modifications to the LDAP schema are made through applying one of the
provided schema files. These schema files define an additional object class,
guacConfigGroup
, which contains all configuration information for a
particular connection, and can be associated with arbitrarily-many users and
groups. Each connection defined by a guacConfigGroup
will be accessible only
by users who are members of that group (specified with the member attribute),
or who are members of associated groups (specified with the seeAlso
attribute).
Important
The instructions given for applying the Guacamole LDAP schema changes are specific to OpenLDAP, but other LDAP implementations, including Active Directory, will have their own methods for updating the schema.
If you are not using OpenLDAP, a standards-compliant schema file is provided that can be used to update the schema of any LDAP directory supporting RFC-2252. Please consult the documentation of your LDAP directory to determine how such schema changes can be applied.
The schema files are located within the schema/
directory of the archive
containing the LDAP extension. You will only need one of these files:
guacConfigGroup.schema
A standards-compliant file describing the schema. This file can be used with any LDAP directory compliant with RFC-2252.
guacConfigGroup.ldif
An LDIF file compatible with OpenLDAP. This file was automatically built from the provided
.schema
file for convenience.
This chapter will cover applying guacConfigGroup.ldif
to an OpenLDAP server.
If you are not using OpenLDAP, your LDAP server should provide documentation
for modifying its schema. If this is the case, please consult the documentation
of your LDAP server before proceeding.
Applying the schema changes to OpenLDAP#
Schema changes to OpenLDAP are applied using the ldapadd utility
with the provided guacConfigGroup.ldif
file:
# ldapadd -Q -Y EXTERNAL -H ldapi:/// -f schema/guacConfigGroup.ldif
adding new entry "cn=guacConfigGroup,cn=schema,cn=config"
#
If the guacConfigGroup
object was added successfully, you should see output
as above. You can confirm the presence of the new object class using
ldapsearch:
# ldapsearch -Q -LLL -Y EXTERNAL -H ldapi:/// -b cn=schema,cn=config dn
dn: cn=schema,cn=config
dn: cn={0}core,cn=schema,cn=config
dn: cn={1}cosine,cn=schema,cn=config
dn: cn={2}nis,cn=schema,cn=config
dn: cn={3}inetorgperson,cn=schema,cn=config
dn: cn={4}guacConfigGroup,cn=schema,cn=config
#
Associating LDAP with a database (recommended)#
If you install both the LDAP authentication as well as support for a database
(following the instructions in Database authentication), Guacamole will automatically
attempt to authenticate against both systems whenever a user attempts to log
in. In addition to any visible objects within the LDAP directory, that user
will have access to any data associated with their account in the database, as
well as any data associated with user groups that they belong to. LDAP user
accounts and groups will be considered equivalent to database users and groups
if their unique names are identical, as determined by the attributes given for
the ldap-username-attribute
and ldap-group-name-attribute
properties.
Data can be manually associated with LDAP user accounts or groups by creating corresponding users or groups within the database which each have the same names. As long as the names are identical, a successful login attempt against LDAP will be trusted by the database authentication, and that user’s associated data will be visible.
If an administrator account (such as the default guacadmin
user provided with
the database authentication) has a corresponding user in the LDAP directory
with permission to read other LDAP users and groups, the Guacamole
administrative interface will include them in the lists presented to the
administrator, and will allow connections from the database to be associated
with those users or groups directly.
Required configuration#
If deploying Guacamole natively, you will need to add a section to your
guacamole.properties
that looks like the following:
ldap-user-base-dn: ou=people,dc=example,dc=net
The properties that must be set in all cases for any Guacamole installation using this extension are:
ldap-user-base-dn
The base of the DN for all Guacamole users. This property is absolutely required in all cases. All Guacamole users must be descendents of this base DN.
If a search DN is provided (via
ldap-search-bind-dn
), then Guacamole users need only be somewhere within the subtree of the specified user base DN.If a search DN is not provided, then all Guacamole users must be direct descendents of this base DN, as the base DN will be appended to the username to derive the user’s DN. For example, if
ldap-user-base-dn
is “ou=people,dc=example,dc=net
”, andldap-username-attribute
is “uid”, then a person attempting to login as “user
” would be mapped to the following full DN: “uid=user,ou=people,dc=example,dc=net
”.
If deploying Guacamole using Docker Compose, you will need to add a set of
environment variables to the environment
section of your
guacamole/guacamole
container that looks like the following:
LDAP_USER_BASE_DN: 'ou=people,dc=example,dc=net'
If instead deploying Guacamole by running docker run
manually, these same
environment variables will need to be provided using the -e
option. For
example:
$ docker run --name some-guacamole \
-e LDAP_USER_BASE_DN="ou=people,dc=example,dc=net" \
-d -p 8080:8080 guacamole/guacamole
The environment variables that must be set in all cases for any Docker-based Guacamole installation using this extension are:
LDAP_USER_BASE_DN
The base of the DN for all Guacamole users. This property is absolutely required in all cases. All Guacamole users must be descendents of this base DN.
If a search DN is provided (via
ldap-search-bind-dn
), then Guacamole users need only be somewhere within the subtree of the specified user base DN.If a search DN is not provided, then all Guacamole users must be direct descendents of this base DN, as the base DN will be appended to the username to derive the user’s DN. For example, if
ldap-user-base-dn
is “ou=people,dc=example,dc=net
”, andldap-username-attribute
is “uid”, then a person attempting to login as “user
” would be mapped to the following full DN: “uid=user,ou=people,dc=example,dc=net
”.
Additional configuration (optional)#
Additional properties may be added to guacamole.properties
to describe how
your LDAP directory is organized and how Guacamole should connect (and bind) to
your LDAP server:
ldap-hostname
The hostname of your LDAP server. If omitted, “localhost” will be used by default. You will need to use a different value if your LDAP server is located elsewhere.
ldap-port
The port your LDAP server listens on. If omitted, the standard LDAP or LDAPS port will be used, depending on the encryption method specified with
ldap-encryption-method
(if any). Unencrypted LDAP uses the standard port of 389, while LDAPS uses port 636. Unless you manually configured your LDAP server to do otherwise, your LDAP server probably listens on port 389.ldap-encryption-method
The encryption mechanism that Guacamole should use when communicating with your LDAP server. Legal values are “none” for unencrypted LDAP, “ssl” for LDAP over SSL/TLS (commonly known as LDAPS), or “starttls” for STARTTLS. If omitted, encryption will not be used.
If you do use encryption when connecting to your LDAP server, you will need to ensure that its certificate chain can be verified using the certificates in Java’s trust store, often referred to as
cacerts
. If this is not the case, you will need to use Java’skeytool
utility to either add the necessary certificates or to create a new trust store containing those certificates.If you will be using your own trust store and not the default
cacerts
, you will need to specify the full path to that trust store using the system propertyjavax.net.ssl.trustStore
. Note that this is a system property and not a Guacamole property; it must be specified when starting the JVM using the-D
option. Your servlet container will provide some means of specifying startup options for the JVM.ldap-ssl-protocol
Configures the SSL/TLS protocol version that will be used to contact the LDAP server, if LDAP encryption is enabled. Legal values are “SSLv3” for (legacy) SSL version 3 encryption, and “TLSv1”, “TLSv1.1”, “TLSv1.2”, or “TLSv1.3” for the various versions of TLS, version 1.0 - 1.3. The default is to use the latest, TLSv1.3.
Please note that the legacy versions of SSLv3 and TLSv1 and TLSv1.1 have many known vulnerabilities and attack vectors, and you should use the latest possible TLS version that your LDAP servers support in order to best protect communication between Guacamole and your LDAP servers.
ldap-max-search-results
The maximum number of search results that can be returned by a single LDAP query. LDAP queries which exceed this maximum will fail. This property is optional. If omitted, each LDAP query will be limited to a maximum of 1000 results.
ldap-search-bind-dn
The DN (Distinguished Name) of the user to bind as when authenticating users that are attempting to log in. If specified, Guacamole will query the LDAP directory to determine the DN of each user that logs in. If omitted, each user’s DN will be derived directly using the base DN specified with
ldap-user-base-dn
.Important
The search DN is used only to resolve a user’s username to their fully qualified DN during authentication. Any further LDAP queries for retrieving objects like users, groups, and connection configurations will be done using the LDAP credentials of the user that logged in.
ldap-search-bind-password
The password to provide to the LDAP server when binding as
ldap-search-bind-dn
to authenticate other users. This property is only used if ldap-search-bind-dn is specified. If omitted, butldap-search-bind-dn
is specified, Guacamole will attempt to bind with the LDAP server without a password.ldap-username-attribute
The attribute or attributes which contain the username within all Guacamole user objects in the LDAP directory. Usually, and by default, this will simply be “uid”. If your LDAP directory contains users whose usernames are dictated by different attributes, multiple attributes can be specified here, separated by commas, but beware: doing so requires that a search DN be provided with
ldap-search-bind-dn
.If a search DN is not provided, then the single username attribute specified here will be used together with the user base DN to directly derive the full DN of each user. For example, if
ldap-user-base-dn
is “ou=people,dc=example,dc=net
”, andldap-username-attribute
is “uid”, then a person attempting to login as “user
” would be mapped to the following full DN: “uid=user,ou=people,dc=example,dc=net
”.ldap-member-attribute
The attribute which contains the members within all group objects in the LDAP directory. Usually, and by default, this will simply be “member”. If your LDAP directory contains groups whose members are dictated by a different attribute, it can be specified here.
ldap-member-attribute-type
Specify whether the attribute defined in
ldap-member-attribute
(Usually “member”) identifies a group member by DN or by username. Possible values: “dn” (the default, if not specified) or “uid”.Example: an LDAP server may present groups using the
groupOfNames
scheme:dn: cn=group1,ou=Groups,dc=example,dc=net objectClass: groupOfNames cn: group1 gidNumber: 12345 member: uid=user1,ou=People,dc=example,dc=net member: uid=user2,ou=People,dc=example,dc=net
ldap-member-attribute
ismember
andldap-member-attribute-type
isdn
.Example: an LDAP server may present groups using the
posixGroup
scheme:dn: cn=group1,ou=Groups,dc=example,dc=net objectClass: posixGroup cn: group1 gidNumber: 12345 memberUid: user1 memberUid: user2
ldap-member-attribute
ismemberUid
andldap-member-attribute-type
isuid
ldap-user-attributes
The attribute or attributes to retrieve from the LDAP directory for the currently logged-in user, separated by commas. If specified, the attributes listed here are retrieved from each authenticated user and dynamically applied to the parameters of that user’s connections as parameter tokens with the prefix “
LDAP_
”. If omitted, LDAP user attributes will not be used for parameter tokens.When a user authenticates with LDAP and accesses a particular Guacamole connection, the values of these tokens will be the values of their corresponding attributes at the time of authentication. If the attribute has no value for the current user, then the corresponding token is not applied. If the attribute has multiple values, then the first value of the attribute is used.
When converting an LDAP attribute name into a parameter token name, the name of the attribute is transformed into uppercase with each word separated by underscores, a naming convention referred to as “uppercase with underscores” or “screaming snake case”.
For example:
LDAP Attribute
Parameter Token
lowercase-with-dashes
${LDAP_LOWERCASE_WITH_DASHES}
CamelCase
${LDAP_CAMEL_CASE}
headlessCamelCase
${LDAP_HEADLESS_CAMEL_CASE}
lettersAndNumbers1234
${LDAP_LETTERS_AND_NUMBERS_1234}
aRANDOM_mixOf-3NAMINGConventions
${LDAP_A_RANDOM_MIX_OF_3_NAMING_CONVENTIONS}
Usage of parameter tokens is discussed in more detail in Configuring Guacamole in Parameter tokens.
ldap-user-search-filter
The search filter used to query the LDAP tree for users that can log into and be granted privileges in Guacamole. If this property is omitted the default of
(objectClass=*)
will be used.ldap-config-base-dn
The base of the DN for all Guacamole configurations. This property is optional. If omitted, the configurations of Guacamole connections will simply not be queried from the LDAP directory. If specified, this base DN will be used when querying the configurations accessible by a user once they have successfully logged in.
Each configuration is analogous to a connection. Within Guacamole’s LDAP support, each configuration functions as a group, having user members (via the
member
attribute) and optionally group members (via theseeAlso
attribute), where each member of a particular configuration group will have access to the connection defined by that configuration.ldap-group-base-dn
The base of the DN for all user groups that may be used by other extensions to define permissions or that may referenced within Guacamole configurations using the standard seeAlso attribute. All groups which will be used to control access to Guacamole configurations must be descendents of this base DN. If this property is omitted, LDAP groups will have no impact on Guacamole group memberships, and the
seeAlso
attribute will have no effect on Guacamole configurations.ldap-group-name-attribute
The attribute or attributes which define the unique name of user groups in the LDAP directory. Usually, and by default, this will simply be “cn”. If your LDAP directory contains groups whose names are dictated by different attributes, multiple attributes can be specified here, separated by commas.
ldap-group-search-filter
The search filter used to query the LDAP tree for groups that may be used by other extensions to define permissions. If this property is omitted the default of
(objectClass=*)
will be used.This has an effect only if
ldap-group-base-dn
is specified.ldap-dereference-aliases
Whether the LDAP connection follows (dereferences) aliases as it searches the tree. Possible values for this property are “never” (the default) so that aliases will never be followed, “searching” to dereference during search operations after the base object is located, “finding” to dereference in order to locate the search base, but not during the actual search, and “always” to always dereference aliases.
ldap-follow-referrals
Whether the LDAP module follows referrals when processing search results from an LDAP search. Referrals can be pointers to other parts of an LDAP tree, or to a different server/connection altogether. This is a boolean parameter, with valid options of “true” or “false.” The default is false. When disabled, LDAP referrals will be ignored when encountered by the Guacamole LDAP client and the client will move on to the next result. When enabled, the LDAP client will follow the referral and process results within the referral, subject to the maximum hops parameter below.
ldap-max-referral-hops
The maximum number of referrals that will be processed before the LDAP client refuses to follow any more referrals. The default is 5. If the
ldap-follow-referrals
property is set to false (the default), this option has no effect. If theldap-follow-referrals
option is set to true, this will limit the depth of referrals followed to the number specified.ldap-operation-timeout
The timeout, in seconds, of any single LDAP operation. The default is 30 seconds. When this timeout is reached LDAP operations will be aborted.
Additional properties may be added to guacamole.properties
to describe how
your LDAP directory is organized and how Guacamole should connect (and bind) to
your LDAP server:
LDAP_HOSTNAME
The hostname of your LDAP server. If omitted, “localhost” will be used by default. You will need to use a different value if your LDAP server is located elsewhere.
LDAP_PORT
The port your LDAP server listens on. If omitted, the standard LDAP or LDAPS port will be used, depending on the encryption method specified with
ldap-encryption-method
(if any). Unencrypted LDAP uses the standard port of 389, while LDAPS uses port 636. Unless you manually configured your LDAP server to do otherwise, your LDAP server probably listens on port 389.LDAP_ENCRYPTION_METHOD
The encryption mechanism that Guacamole should use when communicating with your LDAP server. Legal values are “none” for unencrypted LDAP, “ssl” for LDAP over SSL/TLS (commonly known as LDAPS), or “starttls” for STARTTLS. If omitted, encryption will not be used.
If you do use encryption when connecting to your LDAP server, you will need to ensure that its certificate chain can be verified using the certificates in Java’s trust store, often referred to as
cacerts
. If this is not the case, you will need to use Java’skeytool
utility to either add the necessary certificates or to create a new trust store containing those certificates.If you will be using your own trust store and not the default
cacerts
, you will need to specify the full path to that trust store using the system propertyjavax.net.ssl.trustStore
. Note that this is a system property and not a Guacamole property; it must be specified when starting the JVM using the-D
option. Your servlet container will provide some means of specifying startup options for the JVM.LDAP_SSL_PROTOCOL
Configures the SSL/TLS protocol version that will be used to contact the LDAP server, if LDAP encryption is enabled. Legal values are “SSLv3” for (legacy) SSL version 3 encryption, and “TLSv1”, “TLSv1.1”, “TLSv1.2”, or “TLSv1.3” for the various versions of TLS, version 1.0 - 1.3. The default is to use the latest, TLSv1.3.
Please note that the legacy versions of SSLv3 and TLSv1 and TLSv1.1 have many known vulnerabilities and attack vectors, and you should use the latest possible TLS version that your LDAP servers support in order to best protect communication between Guacamole and your LDAP servers.
LDAP_MAX_SEARCH_RESULTS
The maximum number of search results that can be returned by a single LDAP query. LDAP queries which exceed this maximum will fail. This property is optional. If omitted, each LDAP query will be limited to a maximum of 1000 results.
LDAP_SEARCH_BIND_DN
The DN (Distinguished Name) of the user to bind as when authenticating users that are attempting to log in. If specified, Guacamole will query the LDAP directory to determine the DN of each user that logs in. If omitted, each user’s DN will be derived directly using the base DN specified with
ldap-user-base-dn
.Important
The search DN is used only to resolve a user’s username to their fully qualified DN during authentication. Any further LDAP queries for retrieving objects like users, groups, and connection configurations will be done using the LDAP credentials of the user that logged in.
LDAP_SEARCH_BIND_PASSWORD
The password to provide to the LDAP server when binding as
ldap-search-bind-dn
to authenticate other users. This property is only used if ldap-search-bind-dn is specified. If omitted, butldap-search-bind-dn
is specified, Guacamole will attempt to bind with the LDAP server without a password.LDAP_USERNAME_ATTRIBUTE
The attribute or attributes which contain the username within all Guacamole user objects in the LDAP directory. Usually, and by default, this will simply be “uid”. If your LDAP directory contains users whose usernames are dictated by different attributes, multiple attributes can be specified here, separated by commas, but beware: doing so requires that a search DN be provided with
ldap-search-bind-dn
.If a search DN is not provided, then the single username attribute specified here will be used together with the user base DN to directly derive the full DN of each user. For example, if
ldap-user-base-dn
is “ou=people,dc=example,dc=net
”, andldap-username-attribute
is “uid”, then a person attempting to login as “user
” would be mapped to the following full DN: “uid=user,ou=people,dc=example,dc=net
”.LDAP_MEMBER_ATTRIBUTE
The attribute which contains the members within all group objects in the LDAP directory. Usually, and by default, this will simply be “member”. If your LDAP directory contains groups whose members are dictated by a different attribute, it can be specified here.
LDAP_MEMBER_ATTRIBUTE_TYPE
Specify whether the attribute defined in
ldap-member-attribute
(Usually “member”) identifies a group member by DN or by username. Possible values: “dn” (the default, if not specified) or “uid”.Example: an LDAP server may present groups using the
groupOfNames
scheme:dn: cn=group1,ou=Groups,dc=example,dc=net objectClass: groupOfNames cn: group1 gidNumber: 12345 member: uid=user1,ou=People,dc=example,dc=net member: uid=user2,ou=People,dc=example,dc=net
ldap-member-attribute
ismember
andldap-member-attribute-type
isdn
.Example: an LDAP server may present groups using the
posixGroup
scheme:dn: cn=group1,ou=Groups,dc=example,dc=net objectClass: posixGroup cn: group1 gidNumber: 12345 memberUid: user1 memberUid: user2
ldap-member-attribute
ismemberUid
andldap-member-attribute-type
isuid
LDAP_USER_ATTRIBUTES
The attribute or attributes to retrieve from the LDAP directory for the currently logged-in user, separated by commas. If specified, the attributes listed here are retrieved from each authenticated user and dynamically applied to the parameters of that user’s connections as parameter tokens with the prefix “
LDAP_
”. If omitted, LDAP user attributes will not be used for parameter tokens.When a user authenticates with LDAP and accesses a particular Guacamole connection, the values of these tokens will be the values of their corresponding attributes at the time of authentication. If the attribute has no value for the current user, then the corresponding token is not applied. If the attribute has multiple values, then the first value of the attribute is used.
When converting an LDAP attribute name into a parameter token name, the name of the attribute is transformed into uppercase with each word separated by underscores, a naming convention referred to as “uppercase with underscores” or “screaming snake case”.
For example:
LDAP Attribute
Parameter Token
lowercase-with-dashes
${LDAP_LOWERCASE_WITH_DASHES}
CamelCase
${LDAP_CAMEL_CASE}
headlessCamelCase
${LDAP_HEADLESS_CAMEL_CASE}
lettersAndNumbers1234
${LDAP_LETTERS_AND_NUMBERS_1234}
aRANDOM_mixOf-3NAMINGConventions
${LDAP_A_RANDOM_MIX_OF_3_NAMING_CONVENTIONS}
Usage of parameter tokens is discussed in more detail in Configuring Guacamole in Parameter tokens.
LDAP_USER_SEARCH_FILTER
The search filter used to query the LDAP tree for users that can log into and be granted privileges in Guacamole. If this property is omitted the default of
(objectClass=*)
will be used.LDAP_CONFIG_BASE_DN
The base of the DN for all Guacamole configurations. This property is optional. If omitted, the configurations of Guacamole connections will simply not be queried from the LDAP directory. If specified, this base DN will be used when querying the configurations accessible by a user once they have successfully logged in.
Each configuration is analogous to a connection. Within Guacamole’s LDAP support, each configuration functions as a group, having user members (via the
member
attribute) and optionally group members (via theseeAlso
attribute), where each member of a particular configuration group will have access to the connection defined by that configuration.LDAP_GROUP_BASE_DN
The base of the DN for all user groups that may be used by other extensions to define permissions or that may referenced within Guacamole configurations using the standard seeAlso attribute. All groups which will be used to control access to Guacamole configurations must be descendents of this base DN. If this property is omitted, LDAP groups will have no impact on Guacamole group memberships, and the
seeAlso
attribute will have no effect on Guacamole configurations.LDAP_GROUP_NAME_ATTRIBUTE
The attribute or attributes which define the unique name of user groups in the LDAP directory. Usually, and by default, this will simply be “cn”. If your LDAP directory contains groups whose names are dictated by different attributes, multiple attributes can be specified here, separated by commas.
LDAP_GROUP_SEARCH_FILTER
The search filter used to query the LDAP tree for groups that may be used by other extensions to define permissions. If this property is omitted the default of
(objectClass=*)
will be used.This has an effect only if
ldap-group-base-dn
is specified.LDAP_DEREFERENCE_ALIASES
Whether the LDAP connection follows (dereferences) aliases as it searches the tree. Possible values for this property are “never” (the default) so that aliases will never be followed, “searching” to dereference during search operations after the base object is located, “finding” to dereference in order to locate the search base, but not during the actual search, and “always” to always dereference aliases.
LDAP_FOLLOW_REFERRALS
Whether the LDAP module follows referrals when processing search results from an LDAP search. Referrals can be pointers to other parts of an LDAP tree, or to a different server/connection altogether. This is a boolean parameter, with valid options of “true” or “false.” The default is false. When disabled, LDAP referrals will be ignored when encountered by the Guacamole LDAP client and the client will move on to the next result. When enabled, the LDAP client will follow the referral and process results within the referral, subject to the maximum hops parameter below.
LDAP_MAX_REFERRAL_HOPS
The maximum number of referrals that will be processed before the LDAP client refuses to follow any more referrals. The default is 5. If the
ldap-follow-referrals
property is set to false (the default), this option has no effect. If theldap-follow-referrals
option is set to true, this will limit the depth of referrals followed to the number specified.LDAP_OPERATION_TIMEOUT
The timeout, in seconds, of any single LDAP operation. The default is 30 seconds. When this timeout is reached LDAP operations will be aborted.
Using multiple LDAP servers#
If you have several LDAP servers that Guacamole should authenticate against, it
is possible to provide the configuration details for multiple servers by
creating or editing a YAML file within GUACAMOLE_HOME
called
ldap-servers.yml
. This file consists of a single list of servers (a YAML
array of objects) and any number of corresponding configuration options (the
key/value pairs within each YAML object). The available options correspond
exactly to the properties described above except that they lack an ldap-
prefix.
For example, the following guacamole.properties
:
ldap-hostname: dc1.example.net
ldap-user-base-dn: ou=Users,dc=example,dc=net
ldap-username-attribute: sAMAccountName
ldap-search-bind-dn: cn=Guacamole,ou=Service Users,dc=example,dc=net
ldap-search-bind-password: SomePassword!
is exactly equivalent to the following ldap-servers.yml
- hostname: dc1.example.net
user-base-dn: ou=Users,dc=example,dc=net
username-attribute: sAMAccountName
search-bind-dn: cn=Guacamole,ou=Service Users,dc=example,dc=net
search-bind-password: SomePassword!
The benefit of using ldap-servers.yml
is that the format allows multiple
servers to be defined, relying on the properties within guacamole.properties
as defaults. For example, the following ldap-servers.yml
defines two LDAP
servers:
- hostname: dc1.example.net
user-base-dn: ou=Users,dc=example,dc=net
username-attribute: sAMAccountName
search-bind-dn: cn=Guacamole,ou=Service Users,dc=example,dc=net
search-bind-password: SomePassword!
- hostname: dc2.example.net
user-base-dn: ou=Users,dc=example,dc=net
username-attribute: sAMAccountName
search-bind-dn: cn=Guacamole,ou=Service Users,dc=example,dc=net
search-bind-password: SomePassword!
Leveraging the fact that values within guacamole.properties
are used as the
default values for all LDAP servers in ldap-servers.yml
, the above can be
abbreviated by moving the common options into guacamole.properties
:
ldap-user-base-dn: ou=Users,dc=example,dc=net
ldap-username-attribute: sAMAccountName
ldap-search-bind-dn: cn=Guacamole,ou=Service Users,dc=example,dc=net
ldap-search-bind-password: SomePassword!
Leaving ldap-servers.yml
containing, simply:
- hostname: dc1.example.net
- hostname: dc2.example.net
If multiple LDAP servers are listed within ldap-servers.yml
, and a user
attempts to log into Guacamole, each defined LDAP server is tried, in order,
until one server successfully authenticates the user or until all servers fail.
If not all LDAP servers are relevant to all users, and it is reasonable to determine which user is relevant to which LDAP server by the format of their username, patterns can be specified on a per-server basis to narrow which servers apply to which login attempts. For example:
- hostname: dc1.example.net
match-usernames: COMPANYA\\(.*)
- hostname: dc2.example.net
match-usernames: COMPANYB\\(.*)
The value for match-usernames
can be any regular expression accepted by Java,
where the capturing group dictates the portion that should be considered the
user’s username with respect to Guacamole. If multiple patterns should apply to
a particular LDAP server, this can be specified with a list of patterns for
match-usernames
:
- hostname: dc1.example.net
match-usernames:
- COMPANYA\\(.*)
- (.*)@a\.example\.net
- hostname: dc2.example.net
match-usernames:
- COMPANYB\\(.*)
- (.*)@b\.example\.net
Completing installation#
Guacamole will only reread its configuration and load newly-installed extensions during startup, so Tomcat will need to be restarted before these changes can take effect. Restart Tomcat and give the new functionality a try.
You do not need to restart guacd.
Hint
If Guacamole does not come back online after restarting Tomcat, check the logs. Configuration problems may prevent Guacamole from starting up, and any such errors will be recorded in Tomcat’s logs.
The environment variables that configure the behavior of Docker can only be set at the time the Docker container is created. To apply these configuration changes, you will need to recreate the container.
- If your Guacamole container was deployed using Docker Compose:
Simply making the desired changes to your
docker-compose.yml
and runningdocker compose up
is sufficient. Docker Compose will automatically recognize that the environment variables of the container have changed and recreate it.- If your Guacamole container was deployed manually (using
docker run
): You wll need to manually use
docker rm
to remove the old container and then manually recreate it withdocker run
and the new environment variables.
Hint
If Guacamole does not come back online after recreating the container, check the Docker logs. Configuration problems may prevent Guacamole from starting up, and any such errors will be recorded in the Docker logs for the Guacamole container.
Parameter tokens#
In addition to the standard parameter tokens and the parameter tokens from other extensions, authenticating with LDAP makes the following tokens available for use within connection configurations:
${LDAP_ATTRIBUTE}
The value of the
ATTRIBUTE
attribute of the current user’s LDAP account. This token will only be defined for users that have the relevant attribute set, and only if that attribute was explicitly configured using theldap-user-attributes
property.${LDAP_DOMAIN}
The domain of the LDAP user account of the current user. This token will be defined only for users that have authenticated with LDAP, and only for users that authenticated with a down-level login (
DOMAIN\username
) or a UPN-style login (username@domain
).
Usage of parameter tokens is discussed in more detail in Configuring Guacamole in Parameter tokens.
The LDAP schema#
Guacamole’s LDAP support allows users and connections to be managed purely
within an LDAP directory defined in guacamole.properties
. This is
accomplished with a minimum of changes to the standard LDAP schema - all
Guacamole users are traditional LDAP users and share the same mechanism of
authentication. The only new type of object required is a representation for
Guacamole connections, guacConfigGroup
, which was added to your server’s
schema during the install process above.
Users#
All Guacamole users, as far as the LDAP support is concerned, are LDAP users with standard LDAP credentials. When a user signs in to Guacamole, their username and password will be used to bind to the LDAP server. If this bind operation is successful, the available connections are queried from the directory and the user is allowed in.
Connections and parameters#
Each connection is represented by an instance of the guacConfigGroup
object
class, an extended version of the standard LDAP groupOfNames
, which provides
a protocol and set of parameters. Only members of the guacConfigGroup
will
have access to the corresponding connection.
The guacConfigGroup
object class provides two new attributes in addition to
those provided by groupOfNames
:
guacConfigProtocol
The protocol associated with the connection, such as “
vnc
” or “rdp
”. This attribute is required for everyguacConfigGroup
and can be given only once.guacConfigParameter
The name and value of a parameter for the specified protocol. This is given as
name=value
, where “name” is the name of the parameter, as defined by the documentation for the protocol specified, and “value” is any allowed value for that parameter.This attribute can be given multiple times for the same connection.
guacConfigProxyHostname
The host name or IP address to use for connecting to guacd in order to establish the connection to the server. This attribute is optional and, if not provided, will default to the system-level configuration for connecting to guacd, either the default of
localhost
or the value defined byguacd-hostname
inguacamole.properties
. This attribute may only be specified once per connection.guacConfigProxyPort
The TCP port to use in order to connect to guacd to establish the connection to the server. This attribute is optional, and, like the
guacConfigProxyHostname
attribute, will default to the system-level configuration. This attribute may be specified at most once per connection.guacConfigProxyEncryption
The encryption method that should be used to connect to guacd in order to establish the connection to the server. This attribute is optional and will default to the system-level configuration for connecting to guacd. Valid values for this are
NONE
orSSL
. This attribute may be specified at most once per connection.
For example, to create a new VNC connection which connects to “localhost” at
port 5900, while granting access to user1
and user2
, you could create an
.ldif
file like the following:
dn: cn=Example Connection,ou=groups,dc=example,dc=net
objectClass: guacConfigGroup
objectClass: groupOfNames
cn: Example Connection
guacConfigProtocol: vnc
guacConfigParameter: hostname=localhost
guacConfigParameter: port=5900
guacConfigParameter: password=secret
member: cn=user1,ou=people,dc=example,dc=net
member: cn=user2,ou=people,dc=example,dc=net
The new connection can then be created using the ldapadd utility:
$ ldapadd -x -D cn=admin,dc=example,dc=net -W -f example-connection.ldif
Enter LDAP Password:
adding new entry "cn=Example Connection,ou=groups,dc=example,dc=net"
$
Where cn=admin,dc=example,dc=net
is an administrator account with permission
to create new entries, and example-connection.ldif
is the name of the .ldif
file you just created.
There is, of course, no need to use only the standard LDAP utilities to create connections and users. There are useful graphical environments for manipulating LDAP directories, such as Apache Directory Studio, which make many of the tasks given above much easier.