Forum Discussion
Joe_5599_134300
Nimbostratus
Oct 31, 2014Source IP Allow to VS then URI Rewrite
I need help with the syntax for irule I'm trying to use on a shared HTTPS VS.
I need to check the SRC IP allowed using a data group created, then if found proceed to URI rewrite from test to dev. I ...
R_Eastman_13667
Oct 31, 2014Historic F5 Account
Try this:
when HTTP_REQUEST {
log local0. "Incoming URI = [HTTP::uri]"
if {[class match [IP::client_addr] equals "IP_Allow_Data_Group"]} {
if { [string tolower [HTTP::uri]] starts_with "/test" } {
set uri [string map -nocase {test dev} [HTTP::uri]]
log local0. "New URI = $uri"
HTTP::uri $uri
SSL::disable serverside
pool webtest-test.com-80
}
}
else {
HTTP::close
}
}
R_Eastman_13667
Nov 03, 2014Historic F5 Account
I added an HTTP::close command in an else conditional statement in the above code.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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