Forum Discussion

mageshkumar_278's avatar
mageshkumar_278
Icon for Nimbostratus rankNimbostratus
Jun 28, 2017

Need to add cipher name and client ip address in HTTP header

Need to send cipher name and client ip address to back end servers when ssl negotiation completed successfully or failure.

 

Need to send these details to VIP pool members. don't need to LB local log file.

 

Please guide me how to achieve these in i rule or settings

 

1 Reply

  • You can use the HTTP profile to insert the client IP address. This iRule could be a good starting point. May require some tweaking depending on your requirements:

     when HTTP_REQUEST {  
        HTTP::header insert CLIENT_IP [IP::remote_addr]  
        HTTP::header insert SSL_CIPHER_NAME [SSL::cipher name]
     }