Forum Discussion
Tarmo_Oja_95406
Nimbostratus
Mar 29, 2005session {add|delete} ssl question
I found this code from Code Share.
rule c_cert_session {
when RULE_INIT {
set ::key [AES::key 128]
log local0. "the key is: $::key"
}
when CLIENTSSL_CLIENTCERT { ...
bl0ndie_127134
Mar 29, 2005Historic F5 Account
Have you considered forcing a SSL re-negotiation after a certain time out has been reached? Here is an example ...
when CLIENT_ACCEPTED {
set http_collect 0
}
when HTTP_REQUEST {
if {[HTTP::request_num] > 10} {
SSL::renegotiate
HTTP::collect
set http_collect 1
}
}
when CLIENTSSL_HANDSHAKE {
if {$http_collect == 1} {
set http_collect 0
HTTP::release
}
}
You will at least be able to verify that the client still has the card.
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
