SSH client and server in java

What popular libraries are used to implement both a custom SSH client and a server in java?

I know that Jsch ( http://www.jcraft.com/jsch/ ) is a popular java ssh client, are there good and safe ssh java servers that have an open source license?

+4
source share
1 answer

Apache Mina Server

I have not tested it, but apparently it supports:

  • Port forwarding
  • SFTP
  • Forwarding X11
  • Agent Forwarding


NSsh

I know this is the wrong language, but this C # server is partially based on the Ganymed client code and can be a good link if Apache Mina is down.

+3
source

All Articles