Preserve the client IP address

HTTP requests often pass through one or more proxy servers before they reach the endpoint web server, which changes the source IP address for the request. As a result, endpoint web servers cannot rely on the source IP from the network connection (socket) to be the IP address of the original request. For this reason, you may want to use one of two options to preserve the original client IP address: X-Forwarded-For (XFF), and Transparent proxy.

X-Forwarded-For

The X-Forwarded-For (XFF) field in the HTTP header identifies the originating IP address of a client connecting to a web server through an HTTP proxy or load balancer. The X-Forwarded-For (XFF) HTTP header field is the standard for preserving the client IP. Key elements of X-Forwarded-For are the following:

  • Standards compliant approach
  • The default behavior of Managed WAF
  • Client source IP is inserted in X-Forwarded-For header
  • Client source IP is present in the header even if the request has passed through other proxy servers
  • Better performance because connections to backend web servers can be kept alive

The X-Forwarded-For header identifies the originating IP address of a client connecting to a web server through an HTTP proxy or load balancer.

When the request passes through multiple proxy servers, each server adds its respective source IP to the X-Forwarded-For header. This makes X-Forwarded-For header contain a list of IP addresses the request passed through. The leftmost IP address is the original client IP. The rightmost IP address is the second-to-last proxy in the chain, and the source IP of the request is the address of the last proxy.

This allows the endpoint web server that received the request to extract and log the original client IP address from the XFF header.

Managed WAF, as a proxy-based device, terminates requests from clients and makes requests to the backend web server on behalf of the client. Managed WAF forwards the source IP address to the backend server in the X-Forwarded-For header. This allows the original source IP available to the backend web application.

Direct request through Managed WAF

A client with an IP address of 10.10.10.10 makes a direct request through Managed WAF with an IP address of 192.168.100.10. When the request reaches the web server, the X-Forwarded-For header and source IP will be:

  • Source IP: 192.168.100.10
  • X-Forwarded-For: 10.10.10.10

Request through forward proxy through Managed WAF

A client with an IP address of 10.10.10.10 makes a request through a forward proxy with an IP address of 10.200.200.20, and through Managed WAF with an IP address of 192.168.100.10. When the request reaches the web server, the X-Forwarded-For header and source IP will be:

  • Source IP: 192.168.100.10
  • X-Forwarded-For: 10.10.10.10, 10.200.200.20

Request through forward proxy through load balancer through Managed WAF

A client with an IP address of 10.10.10.10 makes a request through a forward proxy with an IP address of 10.200.200.20, through a load balancer with an IP address of 192.168.100.5, and through a Managed WAF with an IP address of 192.168.100.10. When the request reaches the web server, the X-Forwarded-For header and source IP will be:

  • Source IP: 192.168.100.10
  • X-Forwarded-For: 10.10.10.10, 10.200.200.20, 192.168.100.5
     

X-Forwarded-For options

If Managed WAF deploys behind another reverse proxy, Managed WAF inserts the source IP from that proxy in the X-Forwarded-For header sent to the backend web server. If the X-Forwarded-For header is already present, the source IP appends to the header.

This configuration calls for Managed WAF to read the source IP from the X-Forwarded-For header. Managed WAF uses it in place of the source IP for IP blocking functions, and when logging blocked requests. The client can set the X-Forwarded-For header which should not be trusted by default. While this behavior conforms to standards, it is not always desirable if some or all requests pass through some other proxy server.

For that reason, Managed WAF only extracts a client source IP from the X-Forwarded-For header from those IP addresses that are designated as trusted proxies. When extracting the source IP from the header, Managed WAF uses the last IP address in the X-Forwarded-For list.

Reset X-Forwarded-For header to last untrusted source in list

The X-Forwarded-For header may contain a comma separated list of IP addresses. Depending on the configuration options in the endpoint web server and application, the X-Forwarded-For header may be logged as a comma separated list of IP addresses, which may not be desirable.

Managed WAF can forward the X-Forwarded-For header as a single IP address. For applications that cannot select an IP address in the list, this configuration enables the X-Forwarded-For header as a replacement of the client source IP.

To enable the X-Forwarded-For header:

  1. On the Websites page, click the website you want to change.
  2. Click ADC, and then click Virtual host.
  3. Select Reset X-Forwarded-For header to last untrusted source in list.
  4. Click Save Configuration, and then click Apply changes.i

When the X-Forwarded-For header is enabled, the behavior differs depending on whether the request is from a trusted proxy or an untrusted proxy.

Trusted proxy

If a trusted proxy makes the request, the list of IP addresses in the X-Forwarded-For header replaces the last untrusted IP address in that list.

A client with an IP address of 10.10.10.10 makes a request through a forward proxy with an IP address of 10.200.200.20 through a load balancer with an IP address of 192.168.100.5 that is designated as a trusted proxy; and then through WSM with an IP address of 192.168.100.10. When the request reaches the web server, the X-Forwarded-For header and source IP are:

  • Source IP: 192.168.100.10
  • X-Forwarded-For: 10.200.200.20

Untrusted proxy

If an untrusted proxy makes the request, the list of IP addresses in the X-Forwarded-For header is replaced with the IP of the untrusted source.

A client with an IP address of 10.10.10.10 makes a request through a forward proxy with an IP address of 10.200.200.20, through a load balancer with an IP address of 192.168.100.5, that is not designated as a trusted proxy; and then through Managed WAF with an IP address of 192.168.100.10. When the request reaches the web server, the X-Forwarded-For header and source IP will be:

  • Source IP: 192.168.100.10
  • X-Forwarded-For: 192.168.100.5

Keep X-Forwarded-For header from trusted proxy

When requests are received from a trusted proxy, you may wish to leave the X-Forwarded-For header unchanged and forward the header, as it is, to the endpoint web server. You can leave the X-Forwarded-For header unchanged.

To configure your trusted proxy settings:

  1. On the Websites page, click the website you want to change.
  2. Click ADC, and then click Virtual host.
  3. In the “List of trusted proxies,” add the IP address of one or more trusted proxies or networks as a single IP address or in CIDR notation.
  4. If the X-Forwarded-For header from the trusted proxies should be left unchanged, check Forward X-Forwarded-For and X-Forwarded-Pro to headers from trusted proxy unaltered.
  5. To reset the X-Forwarded-For header to the last source IP before either Managed WAF or a trusted proxy, check Reset X-Forwarded-For header to last untrusted source in list.
  6. Click Save Configuration, and then click Apply changes.

X-Forwarded-For web server and application configuration

You can configure the endpoint application or web server to use the information in the X-Forwarded-For header instead of the client source IP. You can configure standard web applications like Wordpress, Drupal, and Sharepoint to use the X-Forwarded-For header in place of the source IP. For server-based web analytic tools based on reading web server logs, you must configure the web server to log the X-Forwarded-For header information in addition to, or in place of, the client source IP.

However, the client can set the X-Forwarded-For header which results in the contents of the header being altered to contain false information. When Managed WAF sets the X-Forwarded-For header, the last address in the list cannot be forged. Managed WAF receives a request of the source IP, which is the last address in the list.

Configure Managed WAF to replace the header with the last untrusted source IP to ensure the X-Forwarded-For header can be trusted.

In the following examples, where possible, the last IP address in the X-Forwarded-For list is extracted from the header.

IIS 7 and up

To have IIS7 log the X-Forwarded-For header, the IIS Advanced Logging feature must be installed. The module can be downloaded here.

After you install the module, you must add the X-Forwarded-For log field.

To add the log field:

  1. Open the Add Fields box
  2. Open IIS Manager.
  3. In the Connections navigation pane, click the appropriate server, website, or directory for which you want to configure advanced logging.
  4. On the Home page, in the IIS section, double-click Advanced Logging.
  5. Under Actions on the right, click Edit Logging Fields.
  6. Click Add Fields.

To add your fields:

  1. In the Category list, select Default.
  2. In Field ID, type X-Forwarded-For.
  3. In the Source Type list, select Request Header.
  4. In the Source Name field, type X-Forwarded-For.
  5. In the Add Logging field, click OK.

To define and enable advanced logging:

  1. Select a Log Definition. By default, there is only one: %COMPUTERNAME%-Server. The log definition you select must be Enabled.
  2. Under Actions, click Edit Log Definition.
  3. Click Select Fields, and then select X-Forwarded-For logging field.
  4. Click OK.
  5. Under Actions, click Apply.
  6. Click Return To Advanced Logging.
  7. Under Actions, click Enable Advanced Logging.

Apache Web Server

Apache includes built-in support for conditional logging based on environmental variables, which allows Apache Web Server to use the X-Forwarded-For header in place of the client source. This configuration is possible if the header is set and otherwise uses the client source IP.

This example is based on the following standard log format definition:

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined CustomLog log/acces_log combined

To log the X-Forwarded-For header conditionally in place of the client source IP, change the above log definition to:

  1. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  2. LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
  3. SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded
  4. CustomLog "logs/access_log" combined env=!forwarded
  5. CustomLog "logs/access_log" proxy env=forwarded

In line 2, an additional log format which logs X-Forwarded-For in place of %h (remote host) is defined and named “proxy”.

In line 3, a simple regular expression matching an IP address is run against the X-Forwarded-Header and if it matches, an environment variable named “forwarded” is set.

In lines 4 and 5, the log formats are selected based on the status of the “forwarded” environment variable.

Apache Tomcat

For versions of Apache Tomcat greater than version 6.0.21 or Tomcat 7, Remote IP Valve can automatically log the X-Forwarded-For header. When an IP address is present in the X-Forwarded-For header, the valve automatically logs it in place of the source IP.

To load the valve, add org.apache.catalina.valves.RemoteIpValve to server.xml before the AccessLogValve declaration.

For fore information , see this document.

Wordpress and other PHP based applications

To have functions that use $_SERVER['REMOTE_ADDR'], use the first IP address in the X-Forwarded-For header to replace the IP address in that variable with the last address in the X-Forwarded-For list.

For Wordpress, place the code below at the top of wp-config.php:

if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { $xffaddrs = explode(',',$_SERVER['HTTP_X_FORWARDED_FOR']); $_SERVER['REMOTE_ADDR'] = end($xffaddrs); }

Drupal

Drupal directly supports operation behind a reverse proxy. Configuration options are similar to the Managed WAF trusted proxy where it restricts the usage of the header to trusted proxies.

To configure Drupal to run behind Managed WAF, add the following lines at the bottom of the settings.php file:

# Tell Drupal it's behind a proxy

$conf['reverse_proxy'] = TRUE;

# Tell Drupal what addresses the proxy server(s) use

$conf['reverse_proxy_addresses'] = array('10.10.10.10','10.10.10.11');

Where 10.10.10.10 and 10.10.10.11 are the IP addresses of the two Managed WAF nodes in a Managed WAF cluster.

Sharepoint

If you want Sharepoint to use an IP address in the X-Forwarded-For header in place of the source IP, you must install the module, ARR helper.

As with Drupal, the module allows you to configure trusted proxies. For more information, see this article.

Transparent proxy

You can apply the transparent proxy as a configuration option to both the routing proxy and reverse proxy deployment modes. When client source IP is enabled, Managed WAF inserts the client source IP in the request to the backend web server. Because Managed WAF is spoofing the client source IP, this feature is sometimes called "client impersonation."

Transparent proxy preserves the client source IP in the HTTP requests, but it may adversely affect performance and availability. For every request, a new connection must be made, otherwise connections from other client IPs are used. The original client IP is inserted as the source IP of the connection made to the backend web server, and a new connection must be made, which impacts performance on the web server. When acting as a transparent proxy, Managed WAF must be configured as the backend default gateway for the web server. Therefore, a transparent proxy requires an extra step, because the backend web server’s default gateway must change. For this reason, Alert Logic does not recommend transparent proxy mode if you deploy Managed WAF with a load balancer for a high-performance environment.

Transparent proxy key elements

  • Reinserts the client source IP before forwarding the request to the backend web environment.
  • Managed WAF inserts the client source IP as the source IP of the request it forwards to the backend web server.
  • You must configure Backend web servers to useManaged WAF as the default gateway for the backend server response to be returned to the client.
  • You must enable IPforwarding (routing) in Managed WAF.
  • Performance drawbacks may occur from connections from Managed WAF to backend web servers.
  • Managed WAF must be the default gateway. The transparent proxy setting is recommended only for smaller deployments where Managed WAF is not deployed in combination with a load balancer.

Configure the transparent proxy

To minimize the availability impact on the web properties, configure the transparent proxy in the order described below.

To configure the transparent proxy:

If Managed WAF is deployed as a cluster, create a cluster interface with a VIP that is reachable by the backend web servers. Go to System > Clustering.

  1. On the Websites page, click Services, and then click Network.
  2. Select Enable IP Forwarding in Network routing.
  3. Check the segmentation table to verify routing does not violate network segmentation settings. Edit the segmentation table if necessary. By default, routing cannot cross network interfaces.
  4. Configure backend web servers to use Managed WAF as the default gateway.

Follow the steps for each website in the website list:

  1. On the Websites page, click ADC, and then click Virtual host.
  2. Select Transparent Proxy in the Client Source IP.
  3. In the ADC tab, click Load balancing
  4. In the Advance settings, clear Enable real server keep alive Disable backend keep-alive.
  5. Click Save Configuration, and then click Apply changes.

Related topics