Forum Discussion
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 traffic to a port 1234 if it sees "/abc/xyz" in the URI and if not, it should use the port 5678 for all the other application traffic.
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_25068Altostratus
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_235984Nimbostratus
Yep....tried it with an LTM policy but the iRule option worked.
- dubdubNimbostratus
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_235984Nimbostratus
Yep....tried it with an LTM policy but the iRule option worked.
Recent Discussions
Related Content
* 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