ltm rule command SSL unclean shutdownΒΆ

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

SSL::unclean_shutdown
       Sets the value of the Unclean Shutdown setting.

SYNOPSIS
       SSL::unclean_shutdown (enable | disable)

DESCRIPTION
       Sets the value of the Unclean Shutdown setting. This command only affects the current connection, and only
       affects the current context (e.g., when run in a client-side context, it only affects the current client-side
       connection).

RETURN VALUE
       SSL::unclean_shutdown <"enable" | "disable">
	   Sets the value of the current client-side or server-side SSL connectionXs Unclean Shutdown setting.

VALID DURING
       ANY_EVENT

EXAMPLES
	# Note that for this iRule, unclean shutdown should be disabled in the clientssl profile
	when HTTP_REQUEST {
	    if { [HTTP::header "User-Agent"] contains "MSIE" } {
		SSL::unclean_shutdown enable
	    }
	}

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

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