=====================================================================================================================================
3.41	solconfig

	abstract: Set or get BMC SOL configurations by IPMI protocol.

	usage	: java -jar GbtUtility-2.1.76.jar [options] solconfig <get | set> [args...]

	<get>	: Get BMC SOL configurations. (without any rest arguments)
	<set>	: Set BMC SOL configurations.

		[enabled=<true | false>] : Enable or disable sol.
		[rate="numbers"]         : Volatile and non-volatile bit rate
		[priv="byte"]            : Privilege Level.

		
		0x02 : User
		0x03 : Operator
		0x04 : Administrator

	Example	:
		  by node list	 : java -jar GbtUtility-2.1.76.jar solconfig set enabled=false rate=9600 priv=0x04
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 solconfig set enabled=true rate=115200 priv=0x03
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.79,10.1.27.100 solconfig get
=====================================================================================================================================