Following up on my last post about SSH, I’ve found some Java SSH Clients I’d like to share with you. As opposed to SSH client softwares, a Java SSH Client doesn’t need to be installed on your computer. Instead you just need to access a web page from which the Java SSH client will be launched.
The advantage is that you can connect to your web server through SSH from any computer connected to the Internet.
If you are using cPanel then you may already know that there’s a Java SSH Client available:

But if you don’t have a web-based SSH client available, here’s how to get one and install it:
<html>
<body>
<APPLET CODE="com.mindbright.application.MindTerm.class"
ARCHIVE="mindterm.jar" WIDTH=0 HEIGHT=0>
<PARAM NAME="cabinets" VALUE="mindterm.cab">
<PARAM NAME="sepframe" value="true">
<PARAM NAME="debug" value="true">
</APPLET>
</body>
</html>
You should now have a web-based SSH client running. You will then be prompted to enter a hostname or IP address of the SSH server you want to connect to.
One needs to understand that the Java applet is running on your computer and not on the server. Therefore the same connectivity limitations as your computer will apply to your SSH client. In other words, a Java SSH client is of no use if you’re behind a firewall that doesn’t allow connections on port 22.
3 responses so far ↓
1. Response by : zevbla on Jun 20, 2009 at 12:14 pm
Or just use http://jaguar.garofil.be, it’s easier and it doesn’t use java which means faster and it still works perfect behind a firewall (yes, it’s also free)
2. Response by : Amir on Jul 1, 2009 at 2:46 pm
hi
there is any thing, like gotossh.com or serfish.com, i need it for my personal use, my company closed other ports instead of 80, is there anything we install it on the server, and using that to connect to ssh from web ?
thanks
3. Response by : Stephane Brault on Jul 1, 2009 at 2:58 pm
I know there’s a SSH Proxy made in Java somewhere. I used to have it but I don’t anymore.
I had the Java Proxy running a Windows PC on port 8080. I just can’t seem to find it anymore. I’ll post it here if I find it.
Leave a Comment