Forum Discussion
p_jones_1353
Altocumulus
Jul 16, 2014APM Pool assign based on host header or URL path
I have a scenario where users may hit one VIP for a number of different URLs. I'd like the APM to authenticate the users, assign the users to a pool based on the /path/ (or the HOST header for that m...
Kevin_Stewart
Employee
Jul 16, 2014You can definitely assign different pools via the VPE, for a variety of reasons, but I believe an iRule is the only way to dynamically assign different SSO profiles. I would do something like this:
when ACCESS_ACL_ALLOWED {
switch -glob [string tolower [HTTP::uri]] {
"/app1*" {
app1_pool
WEBSSO::select app1_sso
}
"/app2*" {
app2_pool
WEBSSO::select app2_sso
}
default {
default_pool
WEBSSO::disable
}
}
}
It goes without saying that each of the SSO profiles requires a set of information to use for the SSO process (ie. name, password, domain, etc.) and you must collect all of this information up front in the single access policy authentication process.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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
