ltm rule command FLOW idle timeoutΒΆ

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

FLOW::idle_timeout
       Sets/Gets the idle timeout on the flow

SYNOPSIS
       FLOW::idle_timeout (ANY_CHARS) (NONNEGATIVE_INTEGER)?

DESCRIPTION
       Sets/Gets the idle timeout on the flow.

RETURN VALUE
       Set operation: Nothing is returned Get operation: Idle timeout set on the flow as number string.  On error an
       exception is thrown with a message indicating the cause of failure.

VALID DURING
       FLOW_INIT, CLIENT_ACCEPTED, SA_PICKED, LB_SELECTED, CLIENT_DATA, SERVER_DATA, SERVER_CONNECTED

EXAMPLES
	when SERVER_CONNECTED {
	    set cf [FLOW::this]

	    #Get flow idletimeout
	    log local0. "Idle timeout: [FLOW::idle_timeout $cf]"

	    #Set flow idletimeout
	    FLOW::idle_timeout $cf 100

	    unset cf
	}

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

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