help troublshooting or reconfiguring an irule
Currently the CAS server is doing the redirect, terminating the SSL, and providing the OWA logon page… The F5 was set up for ‘Performance L4’ and load balancing.
I was attempting to integrate our enterprise vault solution today. The plan was to use the existing exchange virtual server and iRules to direct traffic to the enterprise vault pool.
I changed the VS type to standard and created the following irules… I see the 1st 80 redirect rule working, but I don’t see any traffic hitting the pool and I think I need a little assistance… Attached is a generic diagram of the EV/Exchange set up.
HTTP Virtual:
When HTTP_REQUEST {
if { [HTTP::uri] contains "enterprisevault" }{
HTTP::redirect "https://webmail.company.com/enterprisevault/"
} elseif { [HTTP::uri] equals "/" }{
HTTP::redirect "https://webmail.company.com/owa"
}
}
HTTPS Virtual:
when HTTP_REQUEST {
if { [string tolower [http_uri]] equals "/enterprisevault" } {
pool enterprise-vault
log local0. "match for ev"
} else {
pool exchange2007-owa
}
}