=====================================================================================================================================
3.24	userapp	

	abstract: Get BMC user account list or set BMC user account.

	usage	: java -jar GbtUtility-2.1.76.jar [options] userapp <set | list> [set args...]
*************************************************************************************************************************************
3.24.1	<set> :		Set BMC account including username, password and privilege to specify user ID.
	
	usage :		java -jar GbtUtility-2.1.76.jar [options] userapp set <username> <password> <id> <privilege>

	<username> :	Continuous US a to z string less than 16 chars
	<password> :	Continuous US a to z string less than 16 chars
	<id> :		Hexbyte type 0xnn or integer n, start at 0x03(3) and Maximum end at 0x0f(15)
	<privilege> :	Set user privilege level on LAN and Serial/Modem channel, level number as follow:
	callback :	level 0x01(1) = Callback
	user :		level 0x02(2) = User
	operator :	level 0x03(3) = Operator
	admin :		level 0x04(4) = Administrator
	Example :
		  by node list   : java -jar GbtUtility-2.1.76.jar userapp set XXX password 5 admin
				   java -jar GbtUtility-2.1.76.jar userapp set XXX password 0x05 admin
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 userapp set ABC password 6 user
				   java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 userapp set ABC password 0x06 user
		  by scan host   : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 userapp set XYZ password 3 operator
				   java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 userapp set XYZ password 0x03 operator
*************************************************************************************************************************************
3.24.2	<list> :	Get all user account (except password) from all available user IDs

	usage :		java -jar GbtUtility-2.1.76.jar [options] userapp list

	Example :
		  by node list   : java -jar GbtUtility-2.1.76.jar userapp list
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 userapp list
		  by scan host   : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.200 userapp list
	
	Notice :
		Result of Nodelist and scan IP will write in each IP Node log file.
		Ex: 10.1.27.79_userapp.log.
		Result of single results show on screen like as follow:
		
		User Account List:
		ID:  nmae:  (LAN)Status:  (LAN)Callin:  (LAN)Link Auth:  (LAN)IPMI Msg:  (LAN)Channel Priv:  (Serial)Status: ....
		2    admin    Enable   Available   Available   Available  Administrator  Enable   Available   Available ...
		3    ADMIN    Enable   Available   Available   Available  Administrator  Enable   Available   Available ...
		4    GIGABYTE Enable   Available   Available   Available  Administrator  Enable   Available   Available ...
		5    None     Disable  Unvailable  Unvailable   Available  NO ACCESS  Disable  Unvailable  Unvailable   ...
		6    None     Disable  Unvailable  Unvailable   Available  NO ACCESS  Disable  Unvailable  Unvailable   ...
					.
					.
					.
*************************************************************************************************************************************
3.24.3	<enable> :	Enable user and SOL service by given ID.

	usage :		java -jar GbtUtility-2.1.76.jar [options] userapp enable 5

	Example :
		  by node list   : java -jar GbtUtility-2.1.76.jar userapp enable 3
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 userapp enable 2
		  by scan host   : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.200 userapp enable 5
*************************************************************************************************************************************
3.24.4	<disable> :	Disable user and SOL service by given ID.

	usage :		java -jar GbtUtility-2.1.76.jar [options] userapp disable 5

	Example :
		  by node list   : java -jar GbtUtility-2.1.76.jar userapp disable 3
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 userapp disable 2
		  by scan host   : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.200 userapp disable 5
=====================================================================================================================================