Forum Discussion
Paul_73795
Jan 06, 2011Nimbostratus
HTTP forward to Pool not working as expected
Hi, I am attempting to set up an iRule that forwards requests to our pool of sorry servers when there are no active members in the load balanced server pool.
As you can see by the logs if no...
Chris_Miller
Jan 07, 2011Altostratus
You could add a "persist none" statement. I can't recall whether it'll work properly from HTTP_REQUEST without OneConnect since we've already selected a pool member and persisted but you can give it a shot.
when CLIENT_ACCEPTED {
set default_pool [LB::server pool]
}
when HTTP_REQUEST {
if { [active_members [$default_pool]] < 1 } {
pool pool_http_sorry_server
persist none
} else {
pool $default_pool } }
If that doesn't work, we'll try different methods for persistence.
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