Forum Discussion

Moinul_Rony's avatar
Moinul_Rony
Icon for Altostratus rankAltostratus
Apr 18, 2023
Solved

Best way to pass http header by iRule containing Client TLS information

Hi All,  We are planning to identify TLS connection information from clients. ie: TLS version, CIPHER suits How can we trap and pass through this client information via HTTP header so applicati...
  • Enes_Afsin_Al's avatar
    Apr 18, 2023

    Hi Moinul_Rony,

    when HTTP_REQUEST {
    	HTTP::header insert X-Forwarded-TLSVersion [SSL::cipher version]
    	HTTP::header insert X-Forwarded-CipherName [SSL::cipher name]
    	HTTP::header insert X-Forwarded-CipherBits [SSL::cipher bits]
    }