Session session=jcsh.getSession(sshUser, sshHost, port);
session.setPassword(sshPassword);
session.setConfig("StrictHostKeyChecking", "no");
jcsh.addIdentity(sshKeyFile);
// jcsh.addIdentity(sshKeyFile,sshKeyPassPhrase);
session.connect(sshTimeout);
// Channel channel=session.openChannel("exec");
// ((ChannelExec)channel).setCommand("who am i");
// channel.setInputStream(null);
// channel.setOutputStream(System.out);