]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_ident.xml
update license header text
[apache] / docs / manual / mod / mod_ident.xml
1 <?xml version="1.0"?>
2 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4 <!-- $LastChangedRevision$ -->
5
6 <!--
7  Licensed to the Apache Software Foundation (ASF) under one or more
8  contributor license agreements.  See the NOTICE file distributed with
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <modulesynopsis metafile="mod_ident.xml.meta">
24
25 <name>mod_ident</name>
26 <description>RFC 1413 ident lookups</description>
27 <status>Extension</status>
28 <sourcefile>mod_ident.c</sourcefile>
29 <identifier>ident_module</identifier>
30 <compatibility>Available in Apache 2.1 and later</compatibility>
31
32 <summary>
33     <p>This module queries an <a href="http://www.ietf.org/rfc/rfc1413.txt"
34     >RFC 1413</a> compatible daemon on a remote host to look up the owner of
35     a connection.</p>
36 </summary>
37 <seealso><module>mod_log_config</module></seealso>
38
39 <directivesynopsis>
40 <name>IdentityCheck</name>
41 <description>Enables logging of the RFC 1413 identity of the remote
42 user</description>
43 <syntax>IdentityCheck On|Off</syntax>
44 <default>IdentityCheck Off</default>
45 <contextlist><context>server config</context><context>virtual host</context>
46 <context>directory</context></contextlist>
47 <compatibility>Moved out of core in Apache 2.1</compatibility>
48
49 <usage>
50     <p>This directive enables <a href="http://www.ietf.org/rfc/rfc1413.txt"
51     >RFC 1413</a>-compliant logging of the remote user name for each
52     connection, where the client machine runs identd or something similar.
53     This information is logged in the access log using the <code>%...l</code>
54     <a href="mod_log_config.html#formats">format string</a>.</p>
55
56     <note>
57       The information should not be trusted in any way except for
58       rudimentary usage tracking.
59     </note>
60
61     <p>Note that this can cause serious latency problems accessing
62     your server since every request requires one of these lookups
63     to be performed. When firewalls or proxy servers are involved,
64     each lookup might possibly fail and add a latency duration as
65     defined by the <directive module="mod_ident"
66     >IdentityCheckTimeout</directive> directive to each hit. So in
67     general this is not very useful on public servers accessible from
68     the Internet.</p>
69 </usage>
70 </directivesynopsis>
71
72 <directivesynopsis>
73 <name>IdentityCheckTimeout</name>
74 <description>Determines the timeout duration for ident requests</description>
75 <syntax>IdentityCheckTimeout <var>seconds</var></syntax>
76 <default>IdentityCheckTimeout 30</default>
77 <contextlist><context>server config</context><context>virtual host</context>
78 <context>directory</context></contextlist>
79 <usage>
80     <p>This directive specifies the timeout duration of an ident
81     request. The default value of 30 seconds is recommended by <a
82     href="http://www.ietf.org/rfc/rfc1413.txt">RFC 1413</a>, mainly because
83     of possible network latency. However, you may want to adjust the
84     timeout value according to your local network speed.</p>
85 </usage>
86 </directivesynopsis>
87
88 </modulesynopsis>
89