Forum Discussion
ervinc_27883
Feb 01, 2012Nimbostratus
irule to redirect base on ip and path
This is giving me a rule error wrong args. I'm a newbie and need help on fixing this irule.
thanks for all your help.
when HTTP_REQUEST {
set my_uri [string tolower [H...
Hi,
The main change to make is replacing redirect to with HTTP::redirect. SAP should be case sensitive also, so you can remove the string tolower. Lastly, the most efficient format for using subnets with the IP::addr command is with CIDR on the network address:
http://devcentral.f5.com/Tutorials/TechTips/tabid/63/articleType/ArticleView/articleId/1086449/iRules-IP-Comparison-Considerations-with-IPaddr-Command.aspx
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/irj/portal" and [IP::addr [IP::remote_addr] equals 10.0.0.0/8] } {
HTTP::redirect "http://web1[HTTP::uri]"
}
}
Aaron
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