Forum Discussion
Chris_Olson_172
Altostratus
Jun 09, 2016How can I find what clients are using TLS 1.0
I need to determine what clients are using TLS 1.0. My thought is to create an irule to gather the source IP of the client.
I know I can view statistic with:
tmsh show ltm profile client-ssl ...
R_Marc
Nimbostratus
Jun 09, 2016you can do it in an iRule pretty easily:
when CLIENTSSL_HANDSHAKE {
switch -glob [SSL::cipher version] {
"*1.1*" -
"*1.2*" {
log local0. "[IP::client_addr] Good guy."
}
default {
log local0. "[IP::client_addr] is a horrible ludite."
}
}
}
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