Forum Discussion
annielee_13548
May 13, 2015Nimbostratus
irules optimization
Hi,
I am trying to optimize the irules below (to a for each loop, if possible) im modifying and need some programming help 🙂
if { ([HTTP::host] contains "env-1") || ([HTTP::host] contains "1.1....
- May 13, 2015
can you try something like this?
when HTTP_REQUEST { switch -glob [HTTP::host] { "*env-1" - "1.1.1.1*" { Do something } "*env-2*" - "1.1.1.2*" { Do something } default { Do something } } }
nitass
May 13, 2015Employee
when the HTTP::host = 1.1.1.1, it works but not env-1, we need if the HTTP:host is env-1 or 1.1.1.1, then do the same thing
sorry i missed one asterisk after env-1. can you try one more time?
when HTTP_REQUEST {
switch -glob [HTTP::host] {
"*env-1*" -
"1.1.1.1*" {
Do something
}
"*env-2*" -
"1.1.1.2*" {
Do something
}
default {
Do something
}
}
}
- annielee_13548May 13, 2015Nimbostratusnow it works ! (thanks) but is that the better irules than for each ? (if there is any) ?
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