https irule
2 TopicsHTTPS redirect to different pools
Hi Guys, I'm trying to use an iRule to redirect traffic based on the URL. Let me give you the example: The Virtual server is on port 443, but the pools are on 8443 and 9443. https://10.10.10.10/blue goto pool_b goto pool_r The default pool in the virtual server is pool_b_8443. Traffic gets to there no problem. However, I can not seem to get this iRule to work. I'm not an expert with BIG IP LTM so please go easy on me :-) Thank you Euan399Views0likes2CommentsHSTS is not working.
Hi there, We have one irule is configured on VIP which is redirecting to maintenance page if user access the wrong url on that page HSTS is not working but if we access the right url then HSTS is working. We have enabled HSTS in http profile and that is attached to the same VIP with irule. Is there any way to enable HSTS on maintenance page or any remediation to fix that issue. if { $DEBUG } { log local0. "TEST - Source IP address: [IP::client_addr]" } switch -glob $uri_ext { "/httpfoo*" {set uri_int [string map {"/httpfoo" "/adapter_plain"} $uri_ext]} "/httptest*" {set uri_int [string map {"/httptest" "/adapter_plain"} $uri_ext]} default { HTTP::respond 200 content [ifile get ifile_service_unavailable_html] set OK 0 } } Many thanks in advance.76Views0likes1Comment