我想使用apache sshd项目http://mina.apache.org/sshd-project/连接网络交换机:
public void connect(){
try
{
client = SshClient.setUpDefaultClient();
client.start();
session=client.connect(account, host, port).getSession();
session.addPasswordIdentity(password);
session.auth().verify();
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
}
但出现错误:
使用apache sshd ssh客户端收到错误“未检测到/配置” IoServiceFactoryFactory
如何修复它?谢谢
我在文档中找不到apache sshd项目是否支持ssh协议1.5?此设备使用ssh 2.0,但是我的其他设备使用ssh 1.5,谢谢