ltm rule command NTLM disableΒΆ

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



NTLM::disable
       Disables processing for NTLM.

SYNOPSIS
       NTLM::disable

DESCRIPTION
       Disables processing for NTLM

       Syntax

       NTLM::disable

	    * Disables processing for NTLM

RETURN VALUE
VALID DURING
       ANY_EVENT

EXAMPLES
	Disables OneConnect & NTLM profile when a WWW-Authenticate "Negotiate"
	header is present:

	when HTTP_RESPONSE {
	    if { [string tolower [HTTP::header values "WWW-Authenticate"]] contains "negotiate"} {
		ONECONNECT::detach disable
		NTLM::disable
	    }
	}

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



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