Forum Discussion

milo's avatar
milo
Icon for Nimbostratus rankNimbostratus
Apr 22, 2010

t3 protocol not working with http profile

Is there a way I can disable the HTTP profile with an iRule if the t3 protocol is wrapped in an HTTP header? There is a nice solution for disabling the profile the CONNECT method is used. I wonder if there's something similar.

2 Replies

  • Hi Milo,

     

     

    Is there anything in the HTTP headers that you could key off of to know when to disable the HTTP filter with HTTP::disable? Can you post a sample request or two?

     

     

    Aaron
  • milo's avatar
    milo
    Icon for Nimbostratus rankNimbostratus
    After working with the people who actually use the application, I discovered they enter t3:// instead of http:// for the URL. I'm able to use the irule below to disable the HTTP profile.

     

     

    when HTTP_REQUEST {

     

    if { [HTTP::request] starts_with "t3" }

     

    { HTTP::disable }

     

    }