Rabbit23_116296
Apr 01, 2015Nimbostratus
iRule to disable APM not working as expected
when HTTP_REQUEST {
set header [HTTP::header "User-Agent"]
log local0. "Before Match --- Header is: $header"
if {[string tolower [HTTP::header "User-Agent"]] contains "mac os x" && [string tolower [HTTP::uri]] equals "/ews/exchange.asmx"} {
ACCESS::disable
log local0. "one time"
log local0. "URI: [HTTP::uri]"
pool /Common/exchange.app/exchange_oa_pool6
}
}