ltm rule command TCP pacingΒΆ

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

TCP::pacing
       Toggles TCP rate pacing.

SYNOPSIS
       TCP::pacing (BOOL_VALUE)?

DESCRIPTION
       Rate pacing limits the data send rate to the physical limitations of the interface to reduce the chance of queue drops.

       Syntax

       TCP::pacing []

RETURN VALUE
       TCP::pacing returns whether TCP rate pacing is enabled.

VALID DURING
       ANY_EVENT

EXAMPLES
	when SERVER_CONNECTED {
	    log local0. "Client: [client_addr]:[client_port] - Server: [server_addr]:[server_port]."
	    # Set client-side rate pacing to enabled.
	    clientside {
		log local0. "Client: pacing [TCP::pacing], enabling"
		TCP::pacing enable
	    }
	    # Set server-side rate pacing to disabled.
	    serverside {
		log local0. "Server: pacing [TCP::pacing], disabling"
		TCP::pacing disable
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-11.6.0 --First introduced the command.  @BIGIP-13.0.0 --Calling with no arguments gets the current value.

BIG-IP							    2022-04-12							  iRule(1)