0

我使用Ganymed,这是一个实现 SSH-2 协议的库,我希望它连接到其他服务器并复制到其他服务器文件。

问题是sshandscp命令需要一个密码(我不能用钥匙来做),而且当我这样做时——它不起作用。

这是一个例子:

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);
    }
}

当我调试它时,我看到服务器返回访问被拒绝。

4

1 回答 1

0

我从未使用过Ganymed,但仅通过查看我怀疑您发送密码过早的代码。您可能需要处理服务器对您的响应。换句话说,服务器接收的不是你认为它接收的东西。

于 2013-09-02T19:05:41.650 回答