Modules | Directives | FAQ | Glossary | Sitemap
Apache HTTP Server Version 2.4
Apache > HTTP Server > Documentation > Version 2.4 > Modules
Apache Module mod_ident
Description: RFC 1413 ident lookups Status: Extension Module Identifier: ident_module Source File: mod_ident.c Compatibility: Available in Apache 2.1 and later
Summary
This module queries an RFC 1413 compatible daemon on a remote host to look up the owner of a connection.
Directives
Bugfix checklist
See also
IdentityCheck Directive
Description: Enables logging of the RFC 1413 identity of the remote user Syntax: IdentityCheck On|Off Default: IdentityCheck Off Context: server config, virtual host, directory Status: Extension Module: mod_ident Compatibility: Moved out of core in Apache 2.1 Enable RFC 1413-compliant logging of the remote user name for each connection, where the client machine runs identd or something similar. This information is logged in the access log using the %...l format string.
The information should not be trusted in any way except for rudimentary usage tracking.
Note that this can cause serious latency problems accessing the server since every request requires one of these lookups to be performed. When firewalls or proxy servers are involved, each lookup might possibly fail and add a latency duration as defined by the IdentityCheckTimeout directive to each hit. So in general this is not very useful on public servers accessible from the Internet.
IdentityCheckTimeout Directive
Description: Determines the timeout duration for ident requests Syntax: IdentityCheckTimeout seconds Default: IdentityCheckTimeout 30 Context: server config, virtual host, directory Status: Extension Module: mod_ident Specify the timeout duration of an ident request. The default value of 30 seconds is recommended by RFC 1413, mainly because of possible network latency. However, we may want to adjust the timeout value according to your local network speed.