我正在尝试在我的 Android 应用程序中嵌入 Apache SSHD 服务器。这是代码:
SshServer sshd = SshServer.setUpDefaultServer();
sshd.setPort(8022);
sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider("hostkey.ser"));
sshd.setShellFactory(new ProcessShellFactory(new String[]{"/system/bin/sh", "-i", "-l"},
EnumSet.of(ProcessShellFactory.TtyOptions.ONlCr)));
sshd.setCommandFactory(new ScpCommandFactory());
List<NamedFactory<Command>> namedFactoryList = new ArrayList<NamedFactory<Command>>();
namedFactoryList.add(new SftpSubsystem.Factory());
sshd.setSubsystemFactories(namedFactoryList);
sshd.setPasswordAuthenticator(new PasswordAuthenticator() {
public boolean authenticate(String name, String password, ServerSession session) {
logger.debug("Name: " + name + ", Password: " + password);
return true;
}
});
sshd.start();
SCP 连接工作正常,但登录后 SSH 一直显示:
login as: *****
*****@192.168.1.22's password:
/system/bin/sh: No controlling tty: open /dev/tty: No such device or address
/system/bin/sh: can't find tty fd
/system/bin/sh: warning: won't have full job control
*****@android:/ $
在此之后,我无法输入控制台,没有任何反应。有谁知道如何解决这个问题?或者,有没有其他方法可以在我的应用程序中嵌入 SSH 服务器?
感谢您提供任何帮助。
最好的问候米兰