Forum Discussion

stwelsch_88132's avatar
stwelsch_88132
Icon for Nimbostratus rankNimbostratus
Sep 12, 2012

iRule to restrict specific browsers

I have never done an iRule like this before, any suggestions?

 

1 Reply

  • Something like this:

    
    when HTTP_REQUEST {
       if { [HTTP::header User-Agent] contains "MSIE" } {
           ... do something
       }
    }