Forum Discussion
BIG IP SSL Serverside
Hello DevCentral,
Is it possible to select the profile & enable the SSL::serverside in the iRule? In order to remove the SSL Serverside profile in the Virtual server configuration.
when HTTP_REQUEST {
SSL::disable serverside (I want to remove the SSL Profile on the VS in order to remove this line)
switch -glob [HTTP::uri] {
"/xxx1*" {
SSL::enable serverside
ASM::disable
pool xxx1
log local0. "Pool Selected: xxx1"
}
"/xx2*" {
SSL::enable serverside
ASM::disable
pool xxx2
log local0. "Pool Selected: xxx2"
}
}
}
2 Replies
- Michael_Jenkins
Cirrostratus
the SSL::profile command may help you out. Haven't used it myself, but looks like you can renegotiate the certificate on the serverside.
Note that you're virtual server will need an SSL profile on it to begin with I believe, but you could disable and enable as necessary (
/SSL::disable
).SSL::enable - Kevin_Stewart
Employee
Correct. You need an SSL profile applied to the VIP before you can use SSL::enable/disable. You can always do something like this:
when CLIENT_ACCEPTED { SSL::disable serverside } when HTTP_REQUEST { if { some condition } { SSL::enable serverside } }
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
* 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