Forum Discussion

Lakshmi_Narayan's avatar
Lakshmi_Narayan
Icon for Nimbostratus rankNimbostratus
Dec 09, 2018

iRule to disable bot Defense

Hi,

 

I need to know how to create a iRule to disable bot Defense for a particular host. Reply would be appreciable.

 

Thanks

 

  • Hi Guy,

    This will do your job:

     when CLIENT_ACCEPTED {
     if {[IP::addr [IP::client_addr] equals 10.10.10.0/24]} {
         BOTDEFENSE::disable
     }
     }
    

    Detailed information is here: BOTDEFENSE::disable