Forum Discussion
Jerry_Hsu_33186
Nimbostratus
May 11, 2014iRule to select pool member depending on client source ip address
Hi There,
I create an iRule for HTTP redirect based on the source IP address as below
it can be work!
when HTTP_REQUEST {
if {[matchclass [IP::client_addr] equals $::datagroup1]}
...
Kevin_Stewart
Employee
May 11, 2014If you're not offloading SSL with a client SSL profile applied to the VIP, then any HTTP commands and events will be unavailable. Fortunately though, since all of your conditions are IP-based, you could use the CLIENT_ACCEPTED event instead:
when CLIENT_ACCEPTED {
if { [class match [IP::client_addr] equals datagroup1] } {
pool pool1
log local0. "[IP::client_addr] is 1"
} elseif { [class match [IP::client_addr] equals datagroup2] } {
pool pool2
log local0. "[IP::client_addr] is 2"
} else {
pool pool3
log local0. "[IP::client_addr] is 3"
}
}
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