Forum Discussion
Guillaume_Rouss
Mar 31, 2021Nimbostratus
Multiple method persistence
Hello. I need to setup load-balancing for a visio application, which is quite complex, as I don't need just to ensure session persistence for a single user, but for multiple users participating to...
spalande
Apr 02, 2021Nacreous
You can write iRule to set source address or cookie persistence for authentication requests and attach it to the vip.
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::uri]] {
"/shibboleth.sso*"
{
persist source_addr 255.255.255.255 3600
}
default {
return
}
}
}
when HTTP_REQUEST {
switch -glob [string tolower [HTTP::uri]] {
"/shibboleth.sso*"
{
persist cookie insert "ssocookie" 3600
}
default {
return
}
}
}
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