我正在使用 Apache Mina SSHD 来实现一个测试 SFTPServer。我已经能够为简单的密码身份验证工作,但是我无法为 PublicKey 身份验证配置东西。我实现了 PublickeyAuthenticator 接口,如下所示,
public class SimpleKeyAuthenticator implements PublickeyAuthenticator {
@Override
public boolean authenticate(String username, PublicKey key, ServerSession session) {
System.out.println("In authenticate");
return false;
}
}
我的服务器实现如下,
...
sshd = SshServer.setUpDefaultServer();
sshd.setPort(2222);
//sshd.setPort(config.getSFTPPort());
//sshd.setKeyPairProvider(new
sshd.setKeyPairProvider(new PEMGeneratorHostKeyProvider("hostkey.pem"));
//sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider());
sshd.setPublickeyAuthenticator(new SimpleKeyAuthenticator());
sshd.setFileSystemFactory(new SimpleFileSystemFactory());
List<NamedFactory<UserAuth>> userAuthFactories = new ArrayList<NamedFactory<UserAuth>>();
userAuthFactories.add(new UserAuthNone.Factory());
sshd.setUserAuthFactories(userAuthFactories);
sshd.setCommandFactory(new ScpCommandFactory());
List<NamedFactory<Command>> namedFactoryList = new ArrayList<NamedFactory<Command>>();
namedFactoryList.add(new SftpSubsystem.Factory());
sshd.setSubsystemFactories(namedFactoryList);
sshd.setSessionFactory(new SimpleSessionFactory(handler));
try {
sshd.start();
} catch (Exception e) {
e.printStackTrace();
}
但是,当我尝试使用我的 SFTP 客户端获取文件时,一切正常。我希望身份验证方法会失败,因为它总是返回 false。我尝试将 KeyPairProvider 设置为同时使用 PEMGeneratorHostKeyProvider 和 SimpleGeneratorHostKeyProvider。我还将 PublicKeyAuthenticator 设置为使用我的 SimpleKeyAuthenticator 类。请注意,当我查看控制台输出时,我从未看到“验证中”,所以我知道永远不会调用 Authenticate。有人可以指出我错过了什么吗?任何帮助表示赞赏。
问候,马克