我使用Ganymed,这是一个实现 SSH-2 协议的库,我希望它连接到其他服务器并复制到其他服务器文件。
问题是ssh
andscp
命令需要一个密码(我不能用钥匙来做),而且当我这样做时——它不起作用。
这是一个例子:
public static void main(String[] args)
{
String username = "sabre";
String host = "beta";
String password = "xxxxxxxx";
try
{
Connection conn = new Connection(host);
conn.connect();
boolean isAuthenticated = conn.authenticateWithPassword(username, password);
if (!isAuthenticated)
throw new IOException("Authentication failed.");
Session sess = conn.openSession();
sess.requestPTY("bash");
sess.startShell();
OutputStreamWriter writer = new new OutputStreamWriter(sess.getStdin(), "utf-8");
writer.write("ssh nir@192.168.1.123 \n");
writer.flush();
writer.write("password\n");
writer.flush();
writer.close();
sess.waitForCondition(ChannelCondition.CLOSED | ChannelCondition.EOF | ChannelCondition.EXIT_STATUS, 10000);
sess.close();
conn.close();
} catch (Exception e)
{
e.printStackTrace(System.err);
System.exit(2);
}
}
当我调试它时,我看到服务器返回访问被拒绝。