Forum Discussion
Yugandhar
Nimbostratus
May 04, 2018To forward traffic to a particular pool using an iRule.
Hi,
Need to forward the requests to Pool 1 only if the pool member is alive. I have a health check monitor HTTP_200 ( GET /test HTTP/1.1\r\nHost: x\r\n\r\n and Receive 200 ) applied to P...
Faruk_AYDIN
Altostratus
May 04, 2018You dont need to know each member status, because active_members gives the total available members of a pool. you can use this command like that:
when HTTP_REQUEST {
if { [active_members Pool_1] >= 1 } {
pool Pool_1
} else {
pool Pool_2
}
}
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