ltm rule command ONECONNECT selectΒΆ

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



ONECONNECT::select
       Instruct the proxy to use persistence data as a OneConnect keying label
       when connecting to a server.

SYNOPSIS
       ONECONNECT::select (persist | none)

DESCRIPTION
       The 'select persist' command instructs the proxy to use persistence
       data as the OneConnect keying label when connecting to the server. NTLM
       connection pooling leverages these commands internally, and it is not
       necessary for the user to use them directly.  Persistance data should
       be established via the 'persist' command.

       Syntax

       ONECONNECT::select persist
	   Enable boolean value of persistance.

       ONECONNECT::select none
	   Disable boolean value of persistance.

       ONECONNECT::select
	   Returns value of the property based on the value of the property

RETURN VALUE
VALID DURING
EXAMPLES
	when HTTP_REQUEST {
	     set keymatch [HTTP::uri]
	     persist uie $keymatch
	     ONECONNECT::select persist
	   }
	when HTTP_REQUEST_SEND {
	     if { $keymatch == "/myuri"} {
	     ONECONNECT::label update $keymatch
	     }
	   }

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



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