Forum Discussion

Anderson_Gomes_'s avatar
Anderson_Gomes_
Icon for Nimbostratus rankNimbostratus
Sep 05, 2017

http profile does not work

Hi folks,

 

I have a ERP application in my environment and when I put the http profile (default) to use acceleration and compression the virtual server stop to works.

 

I am using the default tcp profile.

 

I made a capture using http profile and don't using http profile. In the capture that the application does not work I can see that the server sends an ACK to client, but the client send a FIN,ACK.

 

Anyone may help me?

 

3 Replies

  • Hi folks,

     

    Follow the capture prints.

     

    That capture the http traffic works well.

     

    =============================================

     

    That capture doesn't work

     

  • Hello Anderson,

     

    From the capture, we can see that Websocket are used... could you try the default "Websocket profile" to your VS and try again ?

     

    Regards

     

  • Hi,

     

    the problem is web socket which is not compatible with HTTP profile (in your capture).

     

    you can try with this code or look at web socket compatibility with your BigIP version.

     

    when HTTP_REQUEST {
        if { [string tolower [HTTP::header Upgrade]] contains "websocket" }{
            HTTP::disable
        }
    }