Forum Discussion
- David_StoutNimbostratus
I used an iRule to log this and then tailed the ltm log file
when HTTP_REQUEST { if { [info exists logged] && $logged == 1 }{ Do nothing. Already logged for this connection } else { set logged 1 log "Rule CIPHER_logging fired, from [IP::remote_addr] to vip [IP::local_addr] Cipher [SSL::cipher name]:[SSL::cipher version]:[SSL::cipher bits] Client:[HTTP::header "User-Agent"]:[HTTP::host]" } }
- Vitaliy_SavransNacreous
Or you can use:
when CLIENTSSL_HANDSHAKE { log local0. "CLIENTIP [IP::client_addr] SSL Cipher: [SSL::cipher name]" }
- Spidey_29396NimbostratusThanks Vitaliy