Forum Discussion
Philip_Jonsson_
Jul 15, 2015Altocumulus
Disable Server SSL profile using iRules while using the ProxyPass iRule
Hey everyone!
We have a generic VS which receives all of the traffic for a certain IP address + port 443. We have applied the ProxyPass iRule which distributes the connections to the correct pool b...
Zeeshan_Ahmad_1
Oct 07, 2015Nimbostratus
Just posting the answer that it might help someone else, you can use the below irules to handle such situations.
when SERVER_CONNECTED {
Mention the ports on which SSL Pool members are listening in my case its 443 and 8443
if {[LB::server port] == 443 or [LB::server port] == 8443 } {
SSL::profile serverssl-insecure-compatible
} else {
SSL::disable
}
}
2nd option could be
when SERVER_CONNECTED {
Mention the ports on which Non-SSL Poole members are listening for example Poer80
if {[LB::server port] == 80 } {
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