Forum Discussion

Geoff_Gudgeon_3's avatar
Geoff_Gudgeon_3
Icon for Nimbostratus rankNimbostratus
Mar 02, 2017

IP Reputation and iRule

Hi, Was wondering if I could get some advice on the following iRule that I plan to use to check incoming connections to public facing Virtual Servers. I have confirmed that the F5 in question is ge...
  • Kevin_Davies_40's avatar
    Mar 02, 2017

    Its your call but I wouldn't bother with a pretty response cause frankly their not worth the effort or the CPU. My version of this is below.

     

     when CLIENT_ACCEPTED {     
       if {[IP::reputation [IP::client_addr]] ne ""} {       
         reject         
       }       
     }