Julio_Navarro
Sep 12, 2018Cirrostratus
Secure Cookie when the VIP is requested by IP (not URL)
Hello. I have a VIP config where the pool member is the one handling the cookie to the client. The pool member has a limitation when the client access the VIP via IP (not URL), the cookie is served not secured. I created this iRule which one of the side effects is an increased in the CPU utilization.
when HTTP_RESPONSE {
set cookies [HTTP::cookie names]
foreach aCookie $cookies {
HTTP::cookie secure $aCookie enable
}
}
- Is this the most efficient way?
- Is there a way to use a policy vs an irule?
Thank you
J