Forum Discussion
lior
Nov 10, 2022Nimbostratus
client not support ssl to ssl supported server
Hi all, I have a condition that I have an application that needs to send api requests. and if it comes from a certen source ip I need to forward it to another pool. I cant do a redirect(302)..c...
CA_Valli
MVP
You should be able to achieve this with a serverSSL profile on your virtual server.
If only this very specific traffic needs encryption, you could add an "else" statement with SSL::disable serverside command in addition to serverSSL profile.. something like this
when HTTP_REQUEST {
set nossl 1
if {[IP::addr [IP::client_addr] equals "10.10.10.10"]} {
HTTP::header replace Host "xyz"
pool another_pool-443
HTTP::uri "abcwq/"
set nossl 0
}
}
when SERVER_CONNECTED {
if {$nossl}{ SSL::disable }
}
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