Forum Discussion
metagraphica_25
Nimbostratus
Apr 11, 2017iRule to redirect http and https to https over port 8888
I'm Definitely new to writing iRules. Trying to build one iRule to apply to 2 VIPs. One VIP listens on port 80 the other on port 443. The iRule would redirect any normal HTTP or HTTPS traffic to H...
- Apr 12, 2017
Updated code with corrections...
when HTTP_REQUEST { if { [HTTP::host] equals "zzzzzz.xyz.com" or [HTTP::host] equals "zzzzzz.xyz.com"} { HTTP::redirect "https://zzzzzz.xyz.com:8888" } }
What you want is..
when HTTP_REQUEST { switch [HTTP::host] { "xxxxxx.xyz.com" - "yyyyyy.xyz.com" - "zzzzzz.xyz.com" { HTTP::redirect https://[HTTP::host]:8888[HTTP::uri] } } }
The "-" means use the action of the following condition. So all of the hosts listed will redirect to same hostname on port 8888.
Cory_O
Cirrus
Apr 11, 2017Do you have SSL Client and HTTP profiles applied to your TCP/443 VIP? I know the HTTP Profile is required to read the HTTP traffic, but I'm pretty sure you'll need to decrypt it as well to be able to fire the HTTP_REQUEST Event. -Cory
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects