ltm rule event AUTH ERRORΒΆ

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

AUTH_ERROR
       Triggered when an error occurs during authorization (deprecated in 9.4).

DESCRIPTION
       Note: Deprecated in 9.4. It will still work, but is being phased out. Use AUTH_RESULT instead in 9.4 and up.

       Triggered when an error occurs during authorization. A default handler for this event is associated with each
       of the authentication profiles and causes the system to close the connection. The associated authentication
       session ID is invalidated and, upon receipt of this event, the user should immediately discard the session ID.

Examples
	when AUTH_ERROR {
	    if {$tmm_auth_ssl_ocsp_sid eq [AUTH::last_event_session_id]} {
		SSL::handshake resume
	    }
	}

HINTS
SEE ALSO
       https://devcentral.f5.com/wiki/iRules.ClientAuthUsingHTMLForms.ashx - This iRule illustrates how to use HTML
       Forms for client authentication.  https://devcentral.f5.com/wiki/iRules.ClientAuthUsingHttpCookie.ashx - This
       iRule illustrates how to use HTTP Cookies for client based authentcation.
       https://devcentral.f5.com/wiki/iRules.ClientAuthUsingHttpCookie.ashx - The iRule implements a authenticated
       HTTPS reverse proxy.

CHANGE LOG
       @BIGIP-9.0.0 --First introduced the event.  @BIGIP-9.4.0 --Deprecated in this version

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