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_89166
Noctilucent
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
}
}
}
annielee_13548
May 13, 2015Nimbostratus
just tried.. 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.. (which is setting the pool variable accordingly)
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