Forum Discussion
navgup_66025
Nimbostratus
Aug 08, 2013Auth_Status and Persist
1) I have PoolK and PoolF and default pool has to be PoolK
2) first client request always go to PoolK
3) Check if client has been authenticated to PoolK using Auth_status command, if YES pe...
Kevin_Stewart
Employee
Aug 12, 2013Haven't had a chance to look at Fiddler traces yet, but here's an idea. Add a new cookie when the 401 response comes through. Something like this:
when HTTP_REQUEST {
if { ( [string tolower [HTTP::uri]] starts_with "/nad" ) or ( [HTTP::cookie exists AUTHTOKEN] ) } {
pool poolK
}
}
when HTTP_RESPONSE {
if { [HTTP::status] equals "401" } {
HTTP::cookie insert name AUTHTOKEN value 1
}
}
Hopefully the traces will show why the client isn't sending the Authorization header though.
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