Forum Discussion

Moinul_Rony's avatar
Moinul_Rony
Icon for Altostratus rankAltostratus
3 years ago
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
    3 years ago

    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]
    }