ltm rule command LB detachΒΆ

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



LB::detach
       Detaches the server-side connection from the client-side.

SYNOPSIS
       LB::detach ('disable')?

DESCRIPTION
       This command detaches the server-side connection from the client-side.

       LB::detach
	   Detaches the server side connection from the client-side
       connection.
	   Use in conjunction with TCP::notify as best practice.

RETURN VALUE
VALID DURING
       ANY_EVENT

EXAMPLES
	when SERVER_CONNECTED {
	    if { $connRetry >= $maxAttempts } {
		TCP::notify response
	    }
	}
	when USER_RESPONSE {
	    LB::detach
	}

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



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