ltm rule command MR storeΒΆ

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



MR::store
       Stores a tcl variable with the mr_message object.

SYNOPSIS
       MR::store (VAR)+

DESCRIPTION
       The MR::store command stores a tcl variable with the mr_message object.
       This variable will be delivered with the message to the egress
       connflow. Adding variables does not effect the content of the message.

RETURN VALUE
VALID DURING
       MR_INGRESS MR_EGRESS MR_FAILED

EXAMPLES
	when MR_INGRESS {
	    set client_addr [IP::remote_addr]:[TCP::remote_port]"
	    MR::store client_addr
	}
	when MR_EGRESS {
	    MR::restore client_addr
	}

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



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