From 8c8f815c1b77ea8339f1e5b54fa408f1676aa40f Mon Sep 17 00:00:00 2001
From: Graham Leggett This module is used to treat the remote host which initiated the
- request as the originating remote host as identified by httpd for the
- purposes of authorization and logging, even where that remote host is
+ This module is used to treat the client which initiated the
+ request as the originating client as identified by httpd for the
+ purposes of authorization and logging, even where that client is
behind a load balancer, front end server, or proxy server. The module overrides the apparent remote (client) IP for
- the request with the IP address reported in the request header
- configured with the The module overrides the peer IP address for the connection
+ with the client IP address reported in the request header configured
+ with the Once replaced as instructed, this apparent IP address is then used
- for the Once replaced as instructed, this overridden client IP address is
+ then used for the The error log id of the connection (see
diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml
index 203c1cb0c8..1486adef82 100644
--- a/docs/manual/mod/core.xml
+++ b/docs/manual/mod/core.xml
@@ -1375,10 +1375,10 @@ in case of an error
- CONN_REMOTE_ADDR
The raw IP address of the remote host (see the
+ The peer IP address of the connection (see the
The percent sign
+
- %a
Remote IP-address and port Client IP address and port of the request
- %{c}a
Actual remote IP-address and port (see the
+ Underlying peer IP address and port of the connection (see the
diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml
index 907bfda4a2..85ee5c89aa 100644
--- a/docs/manual/mod/mod_log_config.xml
+++ b/docs/manual/mod/mod_log_config.xml
@@ -71,11 +71,11 @@
%A
The percent sign.
+
- %a
Remote IP-address. Client IP address and port of the request.
+
- %{c}a
Actual remote IP-address and port (see the
- Underlying peer IP address and port of the connection (see the
+
diff --git a/docs/manual/mod/mod_remoteip.xml b/docs/manual/mod/mod_remoteip.xml
index 547542c748..14ad97ed33 100644
--- a/docs/manual/mod/mod_remoteip.xml
+++ b/docs/manual/mod/mod_remoteip.xml
@@ -23,9 +23,9 @@
%A
Local IP-address. %a
and %a
format strings. The original remote IP of the connection is
- available in the %{c}a
format string.%a
format strings. The underlying peer IP of the connection
+ is available in the %{c}a
format string.
Apache identifies the client with the connection's remote_ip value, - and the connection remote_host and remote_logname are derived from this - value. These fields play a role in authentication, authorization and - logging and other purposes by other loadable modules.
+Apache by default identifies the client with the connection's + peer_ip value, and the connection remote_host and remote_logname are + derived from this value. These fields play a role in authentication, + authorization and logging and other purposes by other loadable + modules.
-mod_remoteip replaces the true remote_ip with the advertised remote_ip as - provided by a proxy, for every evaluation of the client that occurs in the - server.
+mod_remoteip overrides the peer IP of the connection with the + advertised client IP as provided by a proxy or load balancer, for + the duration of the request. A load balancer might establish a long + lived keepalive connection with the server, and each request will + have the correct client IP, even though the underlying peer IP + address of the load balancer remains unchanged.
-When multiple, comma delimited remote IP addresses are listed in the +
When multiple, comma delimited client IP addresses are listed in the header value, they are processed in Right-to-Left order. Processing - halts when a given remote IP address is not trusted to present the + halts when a given client IP address is not trusted to present the preceding IP address. The header field is updated to this remaining list of unconfirmed IP addresses, or if all IP addresses were trusted, this header is removed from the request altogether.
-In replacing the remote_ip, the module stores the list of intermediate +
In overriding the client IP, the module stores the list of intermediate
hosts in a remoteip-proxy-ip-list note, which The %{remoteip-proxy-ip-list}n
format token.
If the administrator needs to store this as an additional header, this
@@ -181,9 +185,10 @@ request headers.