Forum Discussion
lmalafati_54233
Dec 01, 2010Nimbostratus
SSL Offload and redirect pools
Hi All,
I have the follow scenario and I would like know If there are one way to try to solve this using iRules.
The condition is...one VS that responds on https using ssl off...
hooleylist
Dec 02, 2010Cirrostratus
As Chris said, you can use an iRule to selectively disable the server SSL profile. See the SSL::disable wiki page for an example:
http://devcentral.f5.com/wiki/default.aspx/iRules/ssl__disable
when HTTP_REQUEST {
set usessl 0
if { [string tolower [HTTP::uri]] starts_with "/secure" } {
pool ssl__pool
set usessl 1
} else {
pool static_pool
set usessl 0
}
}
when SERVER_CONNECTED {
if { $usessl == 0 } {
SSL::disable
}
}
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