Forum Discussion
Gill_32697
Nimbostratus
Oct 20, 2014SSL error redirect
We are diabling SSLv3 in the options list profile. I need to add an entry to my current iRule to redirect clients to a help page is the connection fails a SSL cert. Obviously if the SSL termination f...
mimlo_61970
Cumulonimbus
Oct 20, 2014If you disable SSLv3 in the profile, anyone trying to negotiate SSLv3 will never make it to your when HTTP_RESPONSE event.
You might be able to do something in the CLIENTSSL_HELLO event, but I am not entirely sure. You could always allow SSLv3 in the SSL profile, and then redirect when it is in use. I found the following in the comments at https://devcentral.f5.com/articles/cve-2014-3566-removing-sslv3-from-big-ip, seems like it should work.
when HTTP_REQUEST {
if { [SSL::cipher version] eq "SSLv3" } {
HTTP::respond 302 Location "http://errorURL" noserver
}
}
Gill_32697
Nimbostratus
Oct 20, 2014True, we did disable SSLv3, but do have TLS, the IE Broswer has an issue and you need to make some properties settings. The clients are getting Page can't be displayed, Firefox, Chrome and Safari work fine.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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