24-Mar-2017 04:49
Hi I did setup f5 for web-socket with SSL termination, ssl profile , HTTP profile and cookie persistence. Issue is Client able to send the message but its not happening vice versa. When Client send the message its come via f5 vip and hit server but server unable to send back message to client. Please advise solution for this.
24-Mar-2017 05:17
Let me provide some more details - "" The client application is able to establish secure websocket connection to the server application through the LTM, but after the websocket connection has been established, the client application is not able to send messages to the server application through the LTM using the same websocket connection ""
09-Mar-2023 11:00
Hi ,
Any update, i' have same issue ,
Thanks ,
24-Mar-2017
08:56
- last edited on
21-Nov-2022
22:09
by
JimmyPackets
From what I understand is you need to disable the HTTP profile from processing when the "websocket" has established it's connection, as the profile doesn't understand websockets.
You can code an iRule, with somthing similar to this:
when HTTP_REQUEST {
if { [string tolower [HTTP::header Upgrade]] contains "websocket" }{
HTTP::disable
}
}
24-Mar-2017 09:35
Thank you Ross.
Is it generic i-rule for ltm which has version 10.2.4
24-Mar-2017 11:13
I use a version of this iRule with version 11.5.x. I'm not sure if this will work with 10.x code.
26-Mar-2017 09:20
Thank you much Ross. It works.