GuidesProxy Reversal by the Pound

Proxy Reversal by the Pound

ServerWatch content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.




Deciding on a reliable proxy server for all your Web services can be a frustrating exercise. Configuring the proxy server can be a pain for the administrators, too, as noted in our recent article, “Securing via Proxy.” Luckily, there is Pound, a secure and free reverse proxy server. Pound makes good sense, and is very nice to configure.

Deciding on a proxy server may feel like searching for a needle in a haystack. Configuring the selected server can feel like your eye is being poked with found needle. With Pound, an easily configured secure and free reverse proxy server, neither is the case.

Pound provides a few basic functions. It is, as paraphrased from the Pound page:

  • A reverse proxy
  • A load balancer
  • An SSL terminator
  • An HTTP sanitizer
  • A failover server
  • A request redirector

We’ll use all of these features in examples, excluding the sanitizer part. Sanitizing is done automatically: Pound will check the HTTP (and HTTPS) headers for correctness, and only pass well-formed packets to the back end servers. Assuming the checking isn’t too Draconian, this is a useful feature that will catch a good number of exploit attempts.

So what is it that we’d like to do with Pound? How about improve two aspects of Web services: reliability and security.

Discuss this article in the ServerWatch discussion forum

Pound addresses reliability directly, by providing load balancing and failover. These two items are separate because some load balancer products do not take care to check the state of back end servers before sending requests to them. If a back end ever fails to respond, Pound stops sending requests to that server until it becomes responsive again; i.e. automatic failover happens.

The security benefit of Pound is that it can remove your Web servers from the Internet, if need be. If you’re a hosting provider or university, you’ve most likely dealt with compromised Web sites as a result of long forgotten PHP-based programs lingering about. Most exploits will run code from another Web site, or download a program from another Web site and run it. With a reverse proxy, the actual Web servers don’t require access to the Internet, rendering this class of exploits officially neutered.

When people begin to move Web services to proxy servers, they quickly realize that even with all this newly gained failover capability, they still have a single point of failure — the proxy server. It’s true, and is why running a reliable proxy is important. Extremely busy sites can also install SSL accelerator cards to lighten the CPU load. It’s also possible to have failover-capable proxy servers. Possibly the best option is CARP. For a more universally supported option, it’s also possible to use VRRP or even OSPF to achieve failover.

So how does Pound do this? Let’s say we want to use a few Internet-accessible IP addresses for SSL Web sites, and another to serve all non-SSL sites. We’ll proxy to back-end servers, which are not Internet accessible. For each SSL Web site, we must configure a separate service in Pound.

ListenHTTP
     Address 1.1.1.1
      Port 80
      Service 
          BackEnd
              Address 10.0.0.2
              Port 80
           End
           BackEnd
               Address 10.0.0.3
               Port 80
           End
      End
  End

This tells Pound to listen on the “real” IP address of 1.1.1.1, port 80, and proxy all requests to the back-end servers listed. Failover automatically happens, so there’s nothing to configure to accomplish this important feature. SSL certificates will presumably be configured as well, when a separate section for port 443 is configured.

If we want to host a bunch of Web sites that don’t require SSL, it makes sense to “virtual host” them from the same IP address. This normally works via the Web server checking the HTTP headers to see which site was requested, and then serve the appropriate site. You can still do this with a proxy server, and in Pound, it’s configured like so:

ListenHTTP
      Address 1.1.1.1
      Port 80
      Service
          HeadRequire "Host: .*www.server.tld.*"
          BackEnd
              Address 10.0.0.1
              Port 80
          End
      End
  End

You must configure one service statement per Web site. The above configuration proxies all requests for www.server.tld (HeadRequire just says to match something in the header) to 10.0.0.1, port 80. Multiple BackEnd statements, of course, can exist for each name-based virtual host configured.

Proxy servers have a fundamental problem with sessions. A session, in general, is when the Web server keeps track of a client and allows access to some data without requiring another login. If requests are served in a round-robin fashion, sessions break because (for most applications) session data is not synced between Web servers. The simple solution is to configure Pound to be session-aware. Pound supports five types of session tracking, enabling many flexible methods of getting clients to the right back ends. The most simple, and most likely to work reliably, is IP-based sessions:

Session
  	    Type IP
  	    TTL 300
  End

Just place that within a Service section, and client requests from the same IP that remain active within a five-minute period will all end up at the same back-end server. Header values, cookie data, and even URL contents can also be used to keep track of sessions. None of them work for all situations, so getting sessions working correctly requires a bit of understanding about how the application works.

There are a few other details to configuring the Pound proxy server, but this is a great start. Once a few fundamental issues with HTTP, sessions, and SSL are understood, it’s trivial to configure Pound.

Go forth, and bring to the land a robust and secure Web infrastructure.

This article was originally published on Enterprise Networking Planet.

Get the Free Newsletter!

Subscribe to Daily Tech Insider for top news, trends & analysis

Latest Posts

Related Stories