Forum Discussion
Brian_Ott_11267
Nimbostratus
Jul 29, 2007host header inspection
I want to do host header inspection to decide which pool to send traffic to. For example create one VIP that has multiple domain names tied to it, say:
disney.apple.com 10.2.2.4
pixar.apple.com 10.2.2.4
if the request uses disney.apple.com:
use pool disney.apple.com
if the request uses pixar.apple.com:
use pool pixar.apple.com
This way I can have 1 IP tied to multiple names.
I am in a situation where I have 100+ IPs on my box and it causes us some problems, so if I used host header based inspection I could lower this down to 1 IP and multiple pools.
To do this, do I have to use an iRule?
If so, I imagine I can do(pseudo code):
if pool exists ::hostheader:: then
use pool ::hostheader::
else
use pool default
In the case where my pool names match my host headers.
Am I accurate in my guessing? I have 0 experience with iRules.
- hoolio
Cirrostratus
You can use the pool command with the Host header value in combination with the catch command to capture errors.when HTTP_REQUEST { log local0. "client: [IP::client_addr] -> [HTTP::host][HTTP::uri]" if { [catch { pool [HTTP::host]}] }{ log local0. "pool [HTTP::host] doesn't exist!" pool default_pool } }
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects