ltm rule command ANTIFRAUD enableΒΆ

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

ANTIFRAUD::enable
       Enables the anti-fraud plugin.

SYNOPSIS
       ANTIFRAUD::enable (ANTIFRAUD_PROFILE)?

DESCRIPTION
       Enables the anti-fraud plugin.

RETURN VALUE
       ANTIFRAUD::enable
	   Applies the default anti-fraud profile attached to the virtual server.

       ANTIFRAUD::enable 
	   Applies the specified anti-fraud profile to the flow instead of the default profile attached to the
       virtual server.

VALID DURING
EXAMPLES
	when HTTP_REQUEST {
	    # apply default anti-fraud profile on the transaction with Antifraud-Foo HTTP header
	    if { [HTTP::header exists "Antifraud-Foo" ] } {
		ANTIFRAUD::enable
	    }
	    # apply /Common/antifraud_bar profile on the transaction with Antifraud-Bar HTTP header
	    if { [HTTP::header exists "Antifraud-Bar" ] } {
		ANTIFRAUD::enable /Common/antifraud_bar
	    }
	}

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

BIG-IP						      2020-06-23					     iRule(1)