5

Which are the popular libraries to use to implement both custom SSH client and server in java?

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

Eric Leschinski
  • 146,994
  • 96
  • 417
  • 335
shawn
  • 4,063
  • 7
  • 37
  • 54
  • 1
    possible duplicate of [SSH library for Java](http://stackoverflow.com/questions/995944/ssh-library-for-java) – Jonas Sep 28 '11 at 12:58

1 Answers1

3

Apache Mina server

I haven't checked it out but apparently it has support for:

  • Port forwarding
  • SFTP
  • X11 Forwarding
  • Agent forwarding

NSsh

I know this is the wrong language but this C# server is partly based off the Ganymed client code and might be a good reference if Apache Mina doesn't work out.

Community
  • 1
  • 1
Luke Quinane
  • 16,447
  • 13
  • 69
  • 88