iRule to Log the CLIENTSSL_HANDSHAKE and SERVERSSL_HANDSHAKE- F5 Networks

  1. Use the Below snippet to rewrite the http request.
  2. Associate it with the required VS.

when CLIENTSSL_HANDSHAKE {
log local0. “clientside {[IP::remote_addr]:[TCP::remote_port]} <–> clientside {[IP::local_addr]:[TCP::local_port]}”
log local0. “RSA Session-ID:[SSL::sessionid] Master-Key:[SSL::sessionsecret]”
}
when SERVERSSL_HANDSHAKE {
log local0. “serverside {[IP::local_addr]:[TCP::local_port]} <–> serverside {[IP::remote_addr]:[TCP::remote_port]}”
log local0. “RSA Session-ID:[SSL::sessionid] Master-Key:[SSL::sessionsecret]”
}

Was this article helpful?

Related Articles

Leave A Comment?