I am trying to follow Apache MINA's guide for setting up a SSHD server but I run into problems when connecting to it with PuTTY. I get to enter a username but then get slapped with the following error message:
Below is the code for my server. Do I have to manually set an authentication method for the server? Or am I doing something else wrong?
sshd = SshServer.setUpDefaultServer();
sshd.setPort(3333);
List<NamedFactory<UserAuth>> userAuthFactories = new ArrayList<NamedFactory<UserAuth>>();
sshd.setUserAuthFactories(userAuthFactories);
sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider("hostkey.ser"));
sshd.start();
i just created a sample which works for me. i use Putty to connect to the Apache SSHD. Lib version i used was 'apache-sshd-0.9.0' (downloaded on:2014-02-04). JDK 1.7.
the main of my sample looks like:
as you can see, i created my own command factory like this: (btw. this question on SO was very helpful for me)
for test purpose create a command like this:
as you can see, i used a key file './keys/mysample'. to create such a key file try this: (btw. this question on SO was helpful for that)
and voila:
i hope this is helpful for someone.
[EDIT] take a look here for a even better echo server: http://svn.apache.org/repos/asf/mina/sshd/trunk/sshd-core/src/test/java/org/apache/sshd/util/EchoShellFactory.java