Forum Discussion

viziony's avatar
viziony
Icon for Cirrus rankCirrus
Nov 21, 2022
Solved

Simple iRule to route to particular pools based upton a specific header value.

I am hoping this is a simple ask (nobbie in iRule scripting) , I am trying to create an irule that will route to specific pools based up on cookie header value.  For e.g.  Cookie header "Toggle" V...
  • Mohamed_Ahmed_Kansoh's avatar
    Nov 21, 2022

    Hi viziony , 

    Could you please try this : 

     

    when HTTP_REQUEST {
    if { [HTTP::header "Toggle"] equals "YES" }{
        pool pool_A
    } else {
        pool pool_B
       }
    }
    #you can replace "equals" operator by "contains"

     

    Try it and give me your feedback 
    hope this helps you. 

  • Leslie_Hubertus's avatar
    Nov 29, 2022

    Hi viziony  - it looks like you gave a kudo to Mohamed_Ahmed_Kansoh 's reply, so I'm going to mark that as the Accepted Solution to make it easier for someone else to see the answer. If that answer didn't help you, please let me know so I can change that status. 🙂