Forum Discussion
kend
Altostratus
Jan 28, 2016iRule to Load Balance using Source IP
We have a application that we allow our customers to access from their location to our data center. The customers connect using a client, that we provide, for their local desktop. This client is si...
Kai_Wilke
MVP
Jan 29, 2016Hi Ken,
you could actually check, if your homegrown RDP clients already sends a cookie, using the code below...
when CLIENT_ACCEPTED {
TCP::collect
}
when CLIENT_DATA {
if { [TCP::payload] contains "Cookie" } then {
log -noname local0.debug "RDP Session provides the Cookie = [findstr [TCP::payload] "Cookie: " 8 "\n"]"
} else {
log -noname local0.debug "RDP Session does not provide the Cookie"
}
TCP::release
}Cheers, Kai
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