06-Jan-2021 06:59
it is possible to redirect traffic when f5 receive server name in SNI extension ?
i have tried using policies but it seems the policies cannot detect the SNI extension.
Thanks
06-Jan-2021
20:49
- last edited on
04-Jun-2023
21:07
by
JimmyPackets
Try something below iRule, which may help you.
when HTTP_REQUEST {
log local0.info "SNI name: [SSL::sni name]"
if { [SSL::sni name] eq "www.yahoo.com" } {
HTTP::respond 301 Location "https://www.example.com[HTTP::uri]"
}
}
Reference article : https://clouddocs.f5.com/api/irules/SSL__sni.html