Forum Discussion
Vadim_96730
Nimbostratus
Sep 03, 2015iRule for directing traffic from a specific host and URI to a given pool
Hi, Guys.
I need help for writing an iRule to send traffic from host1.internet.com with a URI request matching /uri1* to a pool pool1
Thank you in advance.
Stanislas_Piro2
Cumulonimbus
Sep 03, 2015Hi,
in the irule, create a else statement with default pool assignment. if there is no default pool assignment, and the user browse first to /uri1 then to /uri2 in the same TCP connection, the second request will be assigned to the previous pool.
When CLIENT_ACCEPTED {
set default_pool [LB::server pool]
}
when HTTP_REQUEST {
if { [string tolower [HTTP::host]] equals "host1.internet.com" } {
if { [string tolower [HTTP::uri]] starts_with "/uri1" } {
pool pool_X
} else { pool $default_pool}
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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