Forum Discussion
Aaron_107144
Nimbostratus
Mar 11, 2011Redirect to pool based on incoming HTTPS URI
I've been digging and testing all day, but I'm coming up blank.
We've had great success so far with the LTMs marshaling traffic from the internet to the Exchange TMG servers for Outlook Anyw...
hoolio
Cirrostratus
Mar 11, 2011Hi Aaron,
With most Exchange deployments on LTM I've heard about, it's a requirement to decrypt the SSL on LTM to do URI inspection. If you haven't done this already, but want to do URI inspection, I think you'll need to import the server cert onto LTM and add a client SSL profile to the virtual server.
Once you do, you can use an HTTP based iRule like this:
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::path]] {
"/rpc*" -
"/oab*" -
"/ews*" -
"/autodiscover*" {
pool TMG_OA_Pool
}
default {
pool TMG_OWA_Pool
}
}
}
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