=====================================================================================================================================
3.26	vmcli (Notice that vmcli command only support Unix systems right now)	(Not support AMI)
	abstract: Connects to the Avocent Protocol Server running on given BMC IP,
		  and causes image file to be seen as a Virtual Media drive on that server.
		
        usage	: java -jar GbtUtility-2.1.76.jar [options] vmcli mount [port <number>] < [removable <file | device>]
										   [floppy <file | device>]
										   [cdrom <ISOfile | device>] >
		  java -jar GbtUtility-2.1.76.jar [options] vmcli umount
*************************************************************************************************************************************
3.26.1  mount : this sub command input args hints :
	[port <number>]                 : option for set port, if you do not set this option the default port is 2068.
	[removable <file | device>]     : option of mount removable device which located at local server. 
	[floppy <file | device>]        : option of mount floppy device or image file which located at local server.
	[cdrom <file | device>]         : option of mount CD/DVD device which located at local server.
	Example local iso image file:  
		   by node list	  : java -jar GbtUtility-2.1.76.jar vmcli mount cdrom media.iso
		   by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 vmcli mount cdrom media.iso
		   by scan IP     : java -jar GbtUtility-2.1.76.jar -S 10.1.27.1,10.1.27.150,Standard vmcli mount cdrom media.iso
	Example of mount removable device: 
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount removable /dev/sdb1
	Example of mount floppy device or image file: 
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount floppy /dev/fd0
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount floppy /home/filename.img
	Example of mount CD/DVD device: 
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount cdrom /dev/cdrom
	Example of mount device or image file and given port: 
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount port 1234 floppy /home/filename.img
	Example of mount muti devices or image files and given port: 
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount port 2068 cdrom ubuntu.iso floppy /dev/fd0
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount port 2068 removable /dev/sdb1 floppy /dev/fd0
		   by node list   : java -jar GbtUtility-2.1.76.jar vmcli mount port 2068 floppy /dev/fd0\n removable /dev/sdb1 cdrom /dev/cdrom
*************************************************************************************************************************************
3.26.2  unmount : no arguments
	Example :
		  by node list	 : java -jar GbtUtility-2.1.76.jar vmcli unmount
		  by single host : java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 vmcli unmount
		  by scan host	 : java -jar GbtUtility-2.1.76.jar -S rmcp,10.1.27.1,10.1.27.150 vmcli unmount
=====================================================================================================================================