ltm rule command SSL secure renegotiationΒΆ

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



SSL::secure_renegotiation
       Controls the SSL Secure Renegotiation mode.

SYNOPSIS
       SSL::secure_renegotiation (request | require | require-strict)?

DESCRIPTION
       Controls the SSL Secure Renegotiation mode.

RETURN VALUE
       SSL::secure_renegotiationAX
	   Get the current Secure Renegotiation mode for the flow. A return
       value of zero denotes request mode. A value of one denotes require
       mode. A value of two denotes require-strict mode.

       SSL::secure_renegotiation AX
	   Set the Secure Renegotiation mode for the flow. Enforcement of the
       new mode will take effect for any subsequent SSL handshakes on the
       flow.

VALID DURING
       ANY_EVENT

EXAMPLES
	when CLIENTSSL_CLIENTHELLO {
	    if { [SSL::secure_renegotiation] != 2 } {
		SSL::secure_renegotiation require-strict
	    }
	}

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



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