Forum Discussion
Oct 12, 2015
BIG-IP : disable SSL on request
F5 BIG-IP Virtual Edition v11.4.1 (Build 635.0) LTM on ESXi
Within an iRule, I know how to enable/disable SSL on a request to be routed :
pool pool-01
SSL::disable serverside
return
Howeve...
stan_piron
Cumulonimbus
Oct 12, 2015As Kevin first suggested, Local traffic policies allow to replace most of irules. there is a bug in the 11.4 version, but is corrected in 11.5.
You can start with the following workaround allowing to use Policies with a small irule doing which is impossible in policy. (iRule HTTP_REQUEST event occurs after Policy Request event)
There is a workaround allowing to use Local traffic policies to disable SSL server side: create the rule action
tcl variable named ssldisable with value 1
add the following irule and assign it to the VS:
when HTTP_REQUEST {
if {([info exists "ssldisable"]) && $ssldisable } {
SSL::disable serverside
}
}
When you will upgrade to 11.5, you only have to replace the
set variable action by server-ssl disableRecent 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