ltm rule command AAA auth sendΒΆ

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



AAA::auth_send
       AAA::auth_send

SYNOPSIS
       AAA::auth_send VIRTUAL_SERVER USERNAME (PASSWORD)?

DESCRIPTION
       This command is used to send user authentication information to
       IVS(internal virtual server).

RETURN VALUE
       request_id  - the id of the current connection that can be used to
       check the status later with AAA::auth_result command

VALID DURING
EXAMPLES
	when HTTP_REQUEST_DATA {
	    set request_id [AAA::auth_send $internal_radius_aaa_vip $username $password]

	    set aaa_result [AAA::auth_result $request_id]
	    if { $aaa_result == "OK" } {
		# request was successfull
	    } else {
		# handle errors
	    }
	}

HINTS
       an internal virtual server is required in order to send the packet.

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



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