Forum Discussion
mrp_235984
Oct 12, 2017Nimbostratus
iRule for traffic redirect to a specific port based on URI
We have a VIP that handles a lot of traffic for different apps. The servers services that URL according to the URI path entered in the browser. I was wondering if there is an iRule that can divert tr...
- Oct 12, 2017
You can set up two pools, one with the pool members on port 1234 and the other with the pool members on 5678. Then you can have an iRule on your virtual server with this:
when HTTP_REQUEST { if { [HTTP::uri] starts_with "/abc/xyz" } { pool pool_1234 } else { pool pool_5678 } }
dubdub
Oct 12, 2017Nimbostratus
You can set up two pools, one with the pool members on port 1234 and the other with the pool members on 5678. Then you can have an iRule on your virtual server with this:
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/abc/xyz" } {
pool pool_1234
} else {
pool pool_5678
}
}
- mrp_235984Oct 13, 2017Nimbostratus
Yep....tried it with an LTM policy but the iRule option worked.
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