• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Open source ssh library for java?

 
Ranch Hand
Posts: 856
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using telnet to connect to UNIX machines, to execute remote code. I used apache commons net library.

Since telnet is insecure, I made my mind to use SSH.

I am looking for SSH open source library. Is there any such open source SSH java library? I would be using java client to SSH unix machine.

Thanks
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSch is pretty much the only game in town. The error handling isn't as good as you'd like, but it has broad support for many important features including Kerberos authentication.
 
Ranch Hand
Posts: 781
Netbeans IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ernest Friedman-Hill wrote:JSch is pretty much the only game in town.



There is also the 'ganymed' library http://www.ganymed.ethz.ch/ssh2/ . A few year ago I compared the 'jcraft', 'ganymed' and the IBM (not open source but free-ish) libraries. Because of the IBM name, I expected the IBM ssh library to be the best but was disappointed because I kept getting unexplained random exceptions. The 'ganymed' library was easy to use but lacks some sophistication. In my simple non-exhaustive and non-formal test the jcraft product came out best. If you have time then these other products are worth testing but be careful of the IBM licence.

 
Ranch Hand
Posts: 80
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try jcabi-ssh, which is a very simple and convenient wrapper of JSch
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic