traffic-policies
1 TopicForwarding ssl to secondary VIP based on uri:port
Hellow all In test environment, to preserve public IPs, we advertise multiple urls with to the same public IP, e.g.: 1.1.1.1 test1.com test2.com test3.com And on firewall translate 1.1.1.1 to private IP of the primary VIP. I need a primary VIP only doing forwarding ot seconday VIP, based on combination of uri and port number ot different secondary VIPs, something like: test1.com:8001 -> secondary-vip-1 test1.com:8002 -> secondary-vip-2 tets2.com:8002 -> secondary-vip-3 test3.com:8004 -> secondary-vip-4 Client ssl profile, anlyitics, etc. are on the secodnary VIPs, and prmimary VIP only doing forwarding. I tried the following iRule and also tried polices and it seems to be workign only when I disable ssl. Can you please help? when HTTP_REQUEST { switch [HTTP::host] { test1.com:8001 { virtual secondary-vip-1 } test1.com:8002 { virtual secondary-vip-2 } tets2.com:8002 { virtual secondary-vip-3 } test3.com:8004 { virtual secondary-vip-4 } default { discard } } }350Views0likes5Comments