Forum Discussion
john_waterworth
Jun 02, 2011Nimbostratus
I need Irule for app to use only one node at a time
I got this VIP 10.5.165.121 used for a both of services,
with 2 active nodes (01/02), on both http/https (no offload).
We are taking a service online that can only run on one node (at a time, s...
Michael_Yates
Jun 03, 2011Nimbostratus
You could create a separate pool configured with Priority Activation Groups in an Active/Standby configuration that you do not tie directly to the Virtual Server. If you have other traffic hitting this Virtual Server you can create a different default pool for them.
You can then use an iRule to redirect / filter the traffic that requires the special pool with an iRule.
You could do it based on the Host or the URI:
BY HOST:
when HTTP_REQUEST {
if { ([HTTP::host] equals "www.myspecialdomain") } {
pool specially.configured.pool
}
}
BY URI:
when HTTP_REQUEST {
if { ([HTTP::uri] starts_with "/specialuri") } {
pool specially.configured.pool
}
}
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