Forum Discussion
Prashant_R_7332
Mar 11, 2014Nimbostratus
F5 Monitor with special requirement on a Pool
I am working on a LTM with v11.
I have a single application server with 6 managed nodes. All these managed nodes are configured on a pool.
There are 3 applications deployed on the all the 6 node...
- Mar 11, 2014
Or if you wanted to just keep one virtual server, you could do it by iRule and create three separate pools (app1, app2, and app3), all using the same six nodes with your appropriate monitor:
when HTTP_REQUEST { if { [HTTP::uri] starts_with "/app1" } { pool app1 } if { [HTTP::uri] starts_with "/app2" } { pool app2 } if { [HTTP::uri] starts_with "/app3" } { pool app3 } }
Cory_50405
Noctilucent
Or if you wanted to just keep one virtual server, you could do it by iRule and create three separate pools (app1, app2, and app3), all using the same six nodes with your appropriate monitor:
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/app1" } {
pool app1
}
if { [HTTP::uri] starts_with "/app2" } {
pool app2
}
if { [HTTP::uri] starts_with "/app3" } {
pool app3
}
}
Prashant_R_7332
Mar 11, 2014Nimbostratus
Thanks Cory for this solution, really appreciate the help. This was one of the solutions that I was considering.
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