<-
Apache > HTTP Server > Documentation > Modules

Apache Module mod_authnz_ldap 236m16

Available Languages:  fr 

Description: Allows an LDAP directory to be used to store the database for HTTP Basic authentication.
Status: Extension
Module Identifier: authnz_ldap_module
Source File: mod_authnz_ldap.c
Compatibility: Available in version 2.1 and later

Summary 6m2os

This module allows authentication front-ends such as mod_auth_basic to authenticate s through an ldap directory.

mod_authnz_ldap s the following features:

When using AuthBasirovider directive with the ldap value.

 Apache!

Topics 2c136y

Directives 1a4l6m

Bugfix checklist 4i2533

See also 27136x

top

Contents 2w746

top

General caveats 1v3n2c

This module caches authentication and authorization results based on the configuration of mod_ldap for details of the cache tunables.

top

Operation 354l6t

There are two phases in granting access to a . The first phase is authentication, in which the mod_authnz_ldap determines if the authenticated is allowed access to the resource in question. This is also known as the compare phase.

Require directive's authorization types by adding ldap-, ldap-dn and ldap-group values.

The Authentication Phase 4g244l

During the authentication phase, mod_authnz_ldap attempts to bind to the directory server using the DN of the entry plus the provided by the HTTP client. Because it does a search, then a bind, it is often referred to as the search/bind phase. Here are the steps taken during the search/bind phase.

  1. Generate a search filter by combining the attribute and filter provided in the AuthLDAPURL directive with the name ed by the HTTP client.
  2. Search the directory using the generated filter. If the search does not return exactly one entry, deny or decline access.
  3. Fetch the distinguished name of the entry retrieved from the search and attempt to bind to the LDAP server using that DN and the ed by the HTTP client. If the bind is unsuccessful, deny or decline access.

The following directives are used during the search/bind phase

AuthLDAPURL Specifies the LDAP server, the base DN, the attribute to use in the search, as well as the extra search filter to use.
AuthLDAPBindDN An optional DN to bind with during the search phase.
AuthLDAPBind An optional to bind with during the search phase.

The Authorization Phase n6h5o

During the authorization phase, Require directives to determine if the credentials are acceptable:

Other Require values may also be used which may require loading additional authorization modules.

mod_authnz_ldap uses the following directives during the compare phase:

AuthLDAPURL The attribute specified in the URL is used in compare operations for the Require ldap- operation.
AuthLDAPCompareDNOnServer Determines the behavior of the Require ldap-dn directive.
AuthLDAPGroupAttribute Determines the attribute to use for comparisons in the Require ldap-group directive.
AuthLDAPGroupAttributeIsDN Specifies whether to use the DN or the name when doing comparisons for the Require ldap-group directive.
AuthLDAPMaxSubGroupDepth Determines the maximum depth of sub-groups that will be evaluated during comparisons in the Require ldap-group directive.
AuthLDAPSubGroupAttribute Determines the attribute to use when obtaining sub-group of the current group during comparisons in the Require ldap-group directive.
AuthLDAPSubGroupClass Specifies the LDAP objectClass values used to identify if queried directory objects really are group objects (as opposed to objects) during the Require ldap-group directive's sub-group processing.
top

The Require Directives 503h1o

Apache's Require directives are used during the authorization phase to ensure that a is allowed to access a resource. mod_authnz_ldap extends the authorization types with ldap-, ldap-dn, ldap-group, ldap-attribute and ldap-filter. Other authorization types may also be used but may require that additional authorization modules be loaded.

Since v2.4.8, expressions are ed within the LDAP require directives.

Require ldap- 126b1u

The Require ldap- directive specifies what names can access the resource. Once AuthLDAPURL of ldap://ldap/o=Example?cn (i.e., cn is used for searches), the following Require directives could be used to restrict access:

Require ldap- "Barbara Jenson"
Require ldap- "Fred "
Require ldap- "Joe Manager"

Because of the way that mod_authnz_ldap handles this directive, Barbara Jenson could sign on as Barbara Jenson, Babs Jenson or any other cn that she has in her LDAP entry. Only the single Require ldap- line is needed to all values of the attribute in the 's entry.

If the uid attribute was used instead of the cn attribute in the URL above, the above three lines could be condensed to

Require ldap- bjenson f jmanager

Require ldap-group 201y5h

This directive specifies an LDAP group whose are allowed access. It takes the distinguished name of the LDAP group. Note: Do not surround the group name with quotes. For example, assume that the following entry existed in the LDAP directory:

dn: cn=s, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Barbara Jenson, o=Example
uniqueMember: cn=Fred , o=Example

The following directive would grant access to both Fred and Barbara:

Require ldap-group cn=s, o=Example

can also be found within sub-groups of a specified LDAP group if AuthLDAPMaxSubGroupDepth is set to a value greater than 0. For example, assume the following entries exist in the LDAP directory:

dn: cn=Employees, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Managers, o=Example
uniqueMember: cn=s, o=Example
uniqueMember: cn=s, o=Example

dn: cn=Managers, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Bob Ellis, o=Example
uniqueMember: cn=Tom Jackson, o=Example

dn: cn=s, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Barbara Jenson, o=Example
uniqueMember: cn=Fred , o=Example

dn: cn=s, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Allan Jefferson, o=Example
uniqueMember: cn=Paul Tilley, o=Example
uniqueMember: cn=Temporary Employees, o=Example

dn: cn=Temporary Employees, o=Example
objectClass: groupOfUniqueNames
uniqueMember: cn=Jim Swenson, o=Example
uniqueMember: cn=Elliot Rhodes, o=Example

The following directives would allow access for Bob Ellis, Tom Jackson, Barbara Jenson, Fred , Allan Jefferson, and Paul Tilley but would not allow access for Jim Swenson, or Elliot Rhodes (since they are at a sub-group depth of 2):

Require ldap-group cn=Employees, o=Example
AuthLDAPMaxSubGroupDepth 1

Behavior of this directive is modified by the AuthLDAPSubGroupClass directives.

Require ldap-dn b1736

The Require ldap-dn directive allows the to grant access based on distinguished names. It specifies a DN that must match for access to be granted. If the distinguished name that was retrieved from the directory server matches the distinguished name in the Require ldap-dn, then authorization is granted. Note: do not surround the distinguished name with quotes.

The following directive would grant access to a specific DN:

Require ldap-dn cn=Barbara Jenson, o=Example

Behavior of this directive is modified by the AuthLDAPCompareDNOnServer directive.

Require ldap-attribute 573w5p

The Require ldap-attribute directive allows the to grant access based on attributes of the authenticated in the LDAP directory. If the attribute in the directory matches the value given in the configuration, access is granted.

The following directive would grant access to anyone with the attribute employeeType = active

Require ldap-attribute employeeType="active"

Multiple attribute/value pairs can be specified on the same line separated by spaces or they can be specified in multiple Require ldap-attribute directives. The effect of listing multiple attribute/values pairs is an OR operation. Access will be granted if any of the listed attribute values match the value of the corresponding attribute in the object. If the value of the attribute contains a space, only the value must be within double quotes.

The following directive would grant access to anyone with the city attribute equal to "San Jose" or status equal to "Active"

Require ldap-attribute city="San Jose" status="active"

Require ldap-filter 2i45t

The Require ldap-filter directive allows the to grant access based on a complex LDAP search filter. If the dn returned by the filter search matches the authenticated dn, access is granted.

The following directive would grant access to anyone having a cell phone and is in the marketing department

Require ldap-filter "&(cell=*)(department=marketing)"

The difference between the Require ldap-filter directive and the Require ldap-attribute directive is that ldap-filter performs a search operation on the LDAP directory using the specified search filter rather than a simple attribute comparison. If a simple attribute comparison is all that is required, the comparison operation performed by ldap-attribute will be faster than the search operation used by ldap-filter especially within a large directory.

top

Examples 412u42

top

Using TLS h2w1h

To use TLS, see the LDAPTrustedMode.

An optional second parameter can be added to the LDAPTrustedMode. This will allow the connection established by an ldap:// Url to be upgraded to a secure connection on the same port.

top

Using SSL 512x5v

To use SSL, see the LDAPTrustedMode.

To specify a secure LDAP server, use ldaps:// in the AuthLDAPURL directive, instead of ldap://.

top

Exposing Information 494j60

when this module performs authentication, ldap attributes specified in the AuthLDAPURL directive are placed in environment variables with the prefix "AUTHENTICATE_".

when this module performs authorization, ldap attributes specified in the AuthLDAPURL directive are placed in environment variables with the prefix "AUTHORIZE_".

If the attribute field contains the name, common name and telephone number of a , a CGI program will have access to this information without the need to make a second independent LDAP query to gather this additional information.

This has the potential to dramatically simplify the coding and configuration required in some web applications.

top

Using Active Directory 101h2f

An Active Directory installation may multiple domains at the same time. To distinguish s between domains, an identifier called a Principle Name (UPN) can be added to a 's entry in the directory. This UPN usually takes the form of the 's name, followed by the domain components of the particular domain, for example [email protected].

You may wish to configure the mod_authnz_ldap module to authenticate s present in any of the domains making up the Active Directory forest. In this way both [email protected] and [email protected] can be authenticated using the same query at the same time.

To make this practical, Active Directory s the concept of a Global Catalog. This Global Catalog is a read only copy of selected attributes of all the Active Directory servers within the Active Directory forest. Querying the Global Catalog allows all the domains to be queried in a single query, without the query spanning servers over potentially slow links.

If enabled, the Global Catalog is an independent directory server that runs on port 3268 (3269 for SSL). To search for a , do a subtree search for the attribute PrincipalName, with an empty search root, like so:

AuthLDAPBindDN [email protected]
AuthLDAPBind 
AuthLDAPURL ldap://10.0.0.1:3268/?PrincipalName?sub

s will need to enter their Principal Name as a , in the form [email protected].

top

Using Microsoft FrontPage with mod_authnz_ldap 1u3xu

Normally, FrontPage uses FrontPage-web-specific /group files (i.e., the mod_authz_groupfile modules) to handle all authentication. Unfortunately, it is not possible to just change to LDAP authentication by adding the proper directives, because it will break the Permissions forms in the FrontPage client, which attempt to modify the standard text-based authorization files.

Once a FrontPage web has been created, adding LDAP authentication to it is a matter of adding the following directives to every .htaccess file that gets created in the web

AuthLDAPURL       "the url"
AuthGroupFile     "mygroupfile"
Require group     "mygroupfile"

How It Works 703m5c

FrontPage restricts access to a web by adding the Require valid- directive to the .htaccess files. The Require valid- directive will succeed for any who is valid as far as LDAP is concerned. This means that anybody who has an entry in the LDAP directory is considered a valid , whereas FrontPage considers only those people in the local file to be valid. By substituting the ldap-group with group file authorization, Apache is allowed to consult the local file (which is managed by FrontPage) - instead of LDAP - when handling authorizing the .

Once directives have been added as specified above, FrontPage s will be able to perform all management operations from the FrontPage client.

Caveats 2x3r6m

top

AuthLDAPAuthorizePrefix Directive 2o2d13

Description: Specifies the prefix for environment variables set during authorization
Syntax: AuthLDAPAuthorizePrefix prefix
Default: AuthLDAPAuthorizePrefix AUTHORIZE_
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.6 and later

This directive allows you to override the prefix used for environment variables set during LDAP authorization. If AUTHENTICATE_ is specified, consumers of these environment variables see the same information whether LDAP has performed authentication, authorization, or both.

Note 196q6v

No authorization variables are set when a is authorized on the basis of Require valid-.
top

AuthLDAPBindAuthoritative Directive 232810

Description: Determines if other authentication providers are used when a can be mapped to a DN but the server cannot successfully bind with the 's credentials.
Syntax: AuthLDAPBindAuthoritative off|on
Default: AuthLDAPBindAuthoritative on
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

By default, subsequent authentication providers are only queried if a cannot be mapped to a DN, but not if the can be mapped to a DN and their cannot be verified with an LDAP bind. If AuthLDAPBindAuthoritative is set to off, other configured authentication modules will have a chance to validate the if the LDAP bind (with the current 's credentials) fails for any reason.

This allows s present in both LDAP and AuthFile to authenticate when the LDAP server is available but the 's is locked or is otherwise unusable.

See also 27136x

top

AuthLDAPBindDN Directive 6j4m6p

Description: Optional DN to use in binding to the LDAP server
Syntax: AuthLDAPBindDN distinguished-name
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

An optional DN used to bind to the server when searching for entries. If not provided, mod_authnz_ldap will use an anonymous bind.

top

AuthLDAPBind Directive 2p5j6s

Description: used in conjunction with the bind DN
Syntax: AuthLDAPBind
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: exec: was added in 2.4.5.

A bind to use in conjunction with the bind DN. Note that the bind is probably sensitive data, and should be properly protected. You should only use the AuthLDAPBindDN and AuthLDAPBind if you absolutely need them to search the directory.

If the value begins with exec: the resulting command will be executed and the first line returned to standard output by the program will be used as the .

# used as-is
AuthLDAPBind secret

#Run /path/to/program to get my 
AuthLDAPBind exec:/path/to/program

#Run /path/to/otherProgram and provide arguments
AuthLDAPBind "exec:/path/to/otherProgram argument1"
top

AuthLDAPCharsetConfig Directive 55175d

Description: Language to charset conversion configuration file
Syntax: AuthLDAPCharsetConfig file-path
Context: server config
Status: Extension
Module: mod_authnz_ldap

The AuthLDAPCharsetConfig directive sets the location of the language to charset conversion configuration file. File-path is relative to the ServerRoot. This file specifies the list of language extensions to character sets. Most s use the provided charset.conv file, which associates common language extensions to character sets.

The file contains lines in the following format:

Language-Extension charset [Language-String] ...

The case of the extension does not matter. Blank lines, and lines beginning with a hash character (#) are ignored.

top

AuthLDAPCompareAs Directive 46214z

Description: Use the authenticated 's credentials to perform authorization comparisons
Syntax: AuthLDAPCompareAs on|off
Default: AuthLDAPCompareAs off
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.6 and later

When set, and mod_authnz_ldap has authenticated the , LDAP comparisons for authorization use the queried distinguished name (DN) and HTTP basic authentication of the authenticated instead of the servers configured credentials.

The ldap-attribute, ldap-, and ldap-group (single-level only) authorization checks use comparisons.

This directive only has effect on the comparisons performed during nested group processing when AuthLDAPSearchAs is also enabled.

This directive should only be used when your LDAP server doesn't accept anonymous comparisons and you cannot use a dedicated AuthLDAPBindDN.

See also 27136x

top

AuthLDAPCompareDNOnServer Directive 1l3w63

Description: Use the LDAP server to compare the DNs
Syntax: AuthLDAPCompareDNOnServer on|off
Default: AuthLDAPCompareDNOnServer on
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

When set, mod_ldap cache can speed up DN comparison in most situations.

top

AuthLDAPDereferenceAliases Directive 6z324z

Description: When will the module de-reference aliases
Syntax: AuthLDAPDereferenceAliases never|searching|finding|always
Default: AuthLDAPDereferenceAliases always
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

This directive specifies when mod_authnz_ldap will de-reference aliases during LDAP operations. The default is always.

top

AuthLDAPGroupAttribute Directive 5m1c3t

Description: LDAP attributes used to identify the of groups.
Syntax: AuthLDAPGroupAttribute attribute
Default: AuthLDAPGroupAttribute member uniqueMember
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

This directive specifies which LDAP attributes are used to check for within groups. Multiple attributes can be used by specifying this directive multiple times. If not specified, then mod_authnz_ldap uses the member and uniqueMember attributes.

top

AuthLDAPGroupAttributeIsDN Directive 5z8t

Description: Use the DN of the client name when checking for group hip
Syntax: AuthLDAPGroupAttributeIsDN on|off
Default: AuthLDAPGroupAttributeIsDN on
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

When set on, this directive says to use the distinguished name of the client name when checking for group hip. Otherwise, the name will be used. For example, assume that the client sent the name bjenson, which corresponds to the LDAP DN cn=Babs Jenson, o=Example. If this directive is set, mod_authnz_ldap will check if the group has bjenson as a member.

top

AuthLDAPInitialBindAs Directive 2ev1j

Description: Determines if the server does the initial DN lookup using the basic authentication s' own name, instead of anonymously or with hard-coded credentials for the server
Syntax: AuthLDAPInitialBindAs off|on
Default: AuthLDAPInitialBindAs off
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.6 and later

By default, the server either anonymously, or with a dedicated and , converts the basic authentication name into an LDAP distinguished name (DN). This directive forces the server to use the verbatim name and provided by the incoming to perform the initial DN search.

If the verbatim name can't directly bind, but needs some cosmetic transformation, see AuthLDAPInitialBindPattern.

This directive should only be used when your LDAP server doesn't accept anonymous searches and you cannot use a dedicated AuthLDAPBindDN.

Not available with authorization-only 5f262m

This directive can only be used if this module authenticates the , and has no effect when this module is used exclusively for authorization.

See also 27136x

top

AuthLDAPInitialBindPattern Directive 5y101p

Description: Specifies the transformation of the basic authentication name to be used when binding to the LDAP server to perform a DN lookup
Syntax: AuthLDAPInitialBindPattern regex substitution
Default: AuthLDAPInitialBindPattern (.*) $1 (remote name used verbatim)
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.6 and later

If AuthLDAPInitialBindAs is set to ON, the basic authentication name will be transformed according to the regular expression and substitution arguments.

The regular expression argument is compared against the current basic authentication name. The substitution argument may contain backreferences, but has no other variable interpolation.

This directive should only be used when your LDAP server doesn't accept anonymous searches and you cannot use a dedicated AuthLDAPBindDN.

AuthLDAPInitialBindPattern (.+) [email protected]
AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com

Not available with authorization-only 5f262m

This directive can only be used if this module authenticates the , and has no effect when this module is used exclusively for authorization.

debugging 3q1o3e

The substituted DN is recorded in the environment variable LDAP_BINDAS. If the regular expression does not match the input, the verbatim name is used.

See also 27136x

top

AuthLDAPMaxSubGroupDepth Directive 1g1s5j

Description: Specifies the maximum sub-group nesting depth that will be evaluated before the search is discontinued.
Syntax: AuthLDAPMaxSubGroupDepth Number
Default: AuthLDAPMaxSubGroupDepth 10
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.0 and later

When this directive is set to a non-zero value X combined with use of the Require ldap-group someGroupDN directive, the provided credentials will be searched for as a member of the someGroupDN directory object or of any group member of the current group up to the maximum nesting level X specified by this directive.

See the Require ldap-group section for a more detailed example.

Nested groups performance 596p6e

When AuthLDAPSubGroupAttribute overlaps with AuthLDAPGroupAttribute (as it does by default and as required by common LDAP schemas), uncached searching for subgroups in large groups can be very slow. If you use large, non-nested groups, set AuthLDAPMaxSubGroupDepth to zero.

top

AuthLDAPRemoteAttribute Directive 3d5x5k

Description: Use the value of the attribute returned during the query to set the REMOTE_ environment variable
Syntax: AuthLDAPRemoteAttribute uid
Default: none
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

If this directive is set, the value of the REMOTE_ environment variable will be set to the value of the attribute specified. Make sure that this attribute is included in the list of attributes in the AuthLDAPRemoteIsDN. This directive is useful should you want people to to a website using an email address, but a backend application expects the name as a id.

top

AuthLDAPRemoteIsDN Directive 5m451z

Description: Use the DN of the client name to set the REMOTE_ environment variable
Syntax: AuthLDAPRemoteIsDN on|off
Default: AuthLDAPRemoteIsDN off
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

If this directive is set to on, the value of the REMOTE_ environment variable will be set to the full distinguished name of the authenticated , rather than just the name that was ed by the client. It is turned off by default.

top

AuthLDAPSearchAs Directive v6v3m

Description: Use the authenticated 's credentials to perform authorization searches
Syntax: AuthLDAPSearchAs on|off
Default: AuthLDAPSearchAs off
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.6 and later

When set, and mod_authnz_ldap has authenticated the , LDAP searches for authorization use the queried distinguished name (DN) and HTTP basic authentication of the authenticated instead of the servers configured credentials.

The ldap-filter and ldap-dn authorization checks use searches.

This directive only has effect on the comparisons performed during nested group processing when AuthLDAPCompareAs is also enabled.

This directive should only be used when your LDAP server doesn't accept anonymous searches and you cannot use a dedicated AuthLDAPBindDN.

See also 27136x

top

AuthLDAPSubGroupAttribute Directive 6r4z3m

Description: Specifies the attribute labels, one value per directive line, used to distinguish the of the current group that are groups.
Syntax: AuthLDAPSubGroupAttribute attribute
Default: AuthLDAPSubGroupAttribute member uniqueMember
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.0 and later

An LDAP group object may contain that are s and that are groups (called nested or sub groups). The AuthLDAPSubGroupAttribute directive identifies the labels of group and the mod_authnz_ldap uses the member and uniqueMember attributes.

top

AuthLDAPSubGroupClass Directive 5x1v6w

Description: Specifies which LDAP objectClass values identify directory objects that are groups during sub-group processing.
Syntax: AuthLDAPSubGroupClass LdapObjectClass
Default: AuthLDAPSubGroupClass groupOfNames groupOfUniqueNames
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap
Compatibility: Available in version 2.3.0 and later

An LDAP group object may contain that are s and that are groups (called nested or sub groups). The mod_authnz_ldap uses the groupOfNames and groupOfUniqueNames values.

top

AuthLDAPURL Directive 201s2t

Description: URL specifying the LDAP search parameters
Syntax: AuthLDAPURL url [NONE|SSL|TLS|STARTTLS]
Context: directory, .htaccess
Override: AuthConfig
Status: Extension
Module: mod_authnz_ldap

An RFC 2255 URL which specifies the LDAP search parameters to use. The syntax of the URL is

ldap://host:port/basedn?attribute?scope?filter

If you want to specify more than one LDAP URL that Apache should try in turn, the syntax is:

AuthLDAPURL "ldap://ldap1.example.com ldap2.example.com/dc=..."

Caveat: If you specify multiple servers, you need to enclose the entire URL string in quotes; otherwise you will get an error: "AuthLDAPURL takes one argument, URL to define LDAP connection.." You can of course use search parameters on each of these.

ldap
For regular ldap, use the string ldap. For secure LDAP, use ldaps instead. Secure LDAP is only available if Apache was linked to an LDAP library with SSL .
host:port

The name/port of the ldap server (defaults to localhost:389 for ldap, and localhost:636 for ldaps). To specify multiple, redundant LDAP servers, just list all servers, separated by spaces. mod_authnz_ldap will try connecting to each server in turn, until it makes a successful connection. If multiple ldap servers are specified, then entire LDAP URL must be encapsulated in double quotes.

Once a connection has been made to a server, that connection remains active for the life of the httpd process, or until the LDAP server goes down.

If the LDAP server goes down and breaks an existing connection, mod_authnz_ldap will attempt to re-connect, starting with the primary server, and trying each redundant server in turn. Note that this is different than a true round-robin search.

basedn
The DN of the branch of the directory where all searches should start from. At the very least, this must be the top of your directory tree, but could also specify a subtree in the directory.
attribute
The attribute to search for. Although RFC 2255 allows a comma-separated list of attributes, only the first attribute will be used, no matter how many are provided. If no attributes are provided, the default is to use uid. It's a good idea to choose an attribute that will be unique across all entries in the subtree you will be using. All attributes listed will be put into the environment with an AUTHENTICATE_ prefix for use by other modules.
scope
The scope of the search. Can be either one or sub. Note that a scope of base is also ed by RFC 2255, but is not ed by this module. If the scope is not provided, or if base scope is specified, the default is to use a scope of sub.
filter
A valid LDAP search filter. If not provided, defaults to (objectClass=*), which will search for all objects in the tree. Filters are limited to approximately 8000 characters (the definition of MAX_STRING_LEN in the Apache source code). This should be more than sufficient for any application. In 2.4.10 and later, the keyword none disables the use of a filter; this is required by some primitive LDAP servers.

When doing searches, the attribute, filter and name ed by the HTTP client are combined to create a search filter that looks like (&(filter)(attribute=name)).

For example, consider an URL of ldap://ldap.example.com/o=Example?cn?sub?(posixid=*). When a client attempts to connect using a name of Babs Jenson, the resulting search filter will be (&(posixid=*)(cn=Babs Jenson)).

An optional parameter can be added to allow the LDAP Url to override the connection type. This parameter can be one of the following:

NONE
Establish an unsecure connection on the default LDAP port. This is the same as ldap:// on port 389.
SSL
Establish a secure connection on the default secure LDAP port. This is the same as ldaps://
TLS | STARTTLS
Establish an upgraded secure connection on the default LDAP port. This connection will be initiated on port 389 by default and then upgraded to a secure connection on the same port.

See above for examples of AuthLDAPURL URLs.

Available Languages:  fr 

top

Comments 2p1l6j

Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed by our s if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Libera.chat, or sent to our mailing lists.