Forum Discussion
Rico
Mar 19, 2019Cirrus
when CLIENTSSL_HANDSHAKE {
if { ( [SSL::cipher version] ne "TLSv1.2" ) } {
set invalid_ssl 1
} else {
set invalid_ssl 0
}
}
when HTTP_REQUEST {
if { $invalid_ssl } {
HTTP::redirect "http://www.example.com/upgradetls"
TCP::close
}
}
Here is an iRule from this article. This should suit your needs. You can also serve a custom response with an iFile
If you have any more questions, I am sure I can help