From: André Malo Date: Sat, 18 Jan 2003 20:24:33 +0000 (+0000) Subject: add mod_ident documentation X-Git-Tag: pre_ajp_proxy~2258 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=227995af7e4d2a86f318ff88de4d6b7c5fc9b158;p=apache add mod_ident documentation Reviewed by: Joshua Slive, Astrid Ke�ler git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98339 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 3437e4c1d2..aa3c72623f 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1152,32 +1152,6 @@ MIME content-type - -IdentityCheck -Enables logging of the RFC1413 identity of the remote -user -IdentityCheck On|Off -IdentityCheck Off -server configvirtual host -directory - -

This directive enables RFC1413-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.

- -

The information should not be trusted in any way except for - rudimentary usage tracking.

- -

Note that this can cause serious latency problems accessing - your server since every request requires one of these lookups - to be performed. When firewalls are involved each lookup might - possibly fail and add 30 seconds of latency to each hit. So in - general this is not very useful on public servers accessible - from the Internet.

-
-
- IfDefine Encloses directives that will be processed only diff --git a/docs/manual/mod/mod_ident.xml b/docs/manual/mod/mod_ident.xml new file mode 100644 index 0000000000..f77e049e7d --- /dev/null +++ b/docs/manual/mod/mod_ident.xml @@ -0,0 +1,70 @@ + + + + + +mod_ident +RFC 1413 ident lookups +Extension +mod_ident.c +ident_module +Available in Apache 2.1 and later + + +

This module queries an RFC 1413 compatible daemon on a remote host to look up the owner of + a connection.

+
+mod_log_config + + +IdentityCheck +Enables logging of the RFC 1413 identity of the remote +user +IdentityCheck On|Off +IdentityCheck Off +server configvirtual host +directory +Moved out of core in Apache 2.1 + + +

This directive enables 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 + your 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 +Determines the timeout duration for ident requests +IdentityCheckTimeout seconds +IdentityCheckTimeout 30 +server configvirtual host +directory + +

This directive specifies 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, you may want to adjust the + timeout value according to your local network speed.

+
+
+ +
+ diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml index bdd5d74809..8e349fca14 100644 --- a/docs/manual/mod/mod_log_config.xml +++ b/docs/manual/mod/mod_log_config.xml @@ -88,7 +88,10 @@ in the request sent to the server. %...l - Remote logname (from identd, if supplied) + Remote logname (from identd, if supplied). This will return a + dash unless mod_ident is present and IdentityCheck is set + On. %...m The request method diff --git a/docs/manual/sitemap.xml b/docs/manual/sitemap.xml index a5005aa267..d2e9088d1d 100644 --- a/docs/manual/sitemap.xml +++ b/docs/manual/sitemap.xml @@ -159,6 +159,7 @@ Server on HPUX mod_ext_filter.xml mod_file_cache.xml mod_headers.xml + mod_ident.xml mod_imap.xml mod_include.xml mod_info.xml