ltm rule command BOTDEFENSE disableΒΆ

iRule(1)		      BIG-IP TMSH Manual		      iRule(1)



BOTDEFENSE::disable
       Disables processing by Bot Defense on the connection.

SYNOPSIS
       BOTDEFENSE::disable

DESCRIPTION
       Disables processing and blocking of the request by Bot Defense, for the
       duration of the current TCP connection, or until BOTDEFENSE::enable is
       called.

       Syntax

       BOTDEFENSE::disable

RETURN VALUE
VALID DURING
       ALL_EVENTS, CLIENT_ACCEPTED, HTTP_REQUEST

EXAMPLES
	# EXAMPLE: Disabling Bot Defense for a netmask of client IP addresses
	when CLIENT_ACCEPTED {
	    if {[IP::addr [IP::client_addr] equals 10.10.10.0/24]} {
		BOTDEFENSE::disable
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-12.1 --First introduced the command.



BIG-IP				  2017-01-31			      iRule(1)