Swaminathan.M
Swaminathan.M

Reputation: 293

Java SSH Server Library

I would like to choose a good 'SSH Server' library in Java for my project.

I know that there are bunch of libraries available out there like,

AFAIK, apache mina alone helps us in creating the server part, whereas others provide us only the ssh client.

My question is, I would like to create a full-fledged server part which would authenticate, accept ssh session etc., in my project. Please provide your suggestions on choosing the right library.

Note: I presume this question could have been asked earlier, but still I would like to know the best current/updated libraries, and moreover specific to the server part.

Upvotes: 1

Views: 5088

Answers (1)

Marged
Marged

Reputation: 10973

Depending on which functions you want to provide on the server side you might take a different approach.

If you want to provide Java code that can be accessed using a SSH / command line syntax, CraSH could be a solution to your demands.

Upvotes: 1

Related Questions