I know cyberduck is a good ftp/sftp client, but what about a pretty ssh client that is at least separate from the terminal. I want to be able to leave it running with a reverse ssh tunnel so that I can access my dorm room computer from anywhere.

Cheers

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Fugu? It's a bit old but you can manage SSH tunnels in it. Maybe also SSH Tunnel Manager which is also old; I would recommend getting the 2.0b3 version.

link|improve this answer
Thanks. I'm going to leave this open a bit longer just in case there are any more recommendations. – mechko Jan 8 '10 at 0:48
feedback

Call me old fashioned:
But what is so bad about using the ssh client from the command line?

ssh user@host -L 8080:server:80

You could then put that in a script:

 #!/bin/bash
 ssh user@host -L 8080:server:80

If you are THAT attached to the GUI - I think putty is your answer: http://www.macports.org/ports.php?by=name&substr=putty

link|improve this answer
haha I have no problem with using bash. I use it for most things. However, I want something that my room mate could use and fix if things go wrong while I'm not around. – mechko Jan 8 '10 at 1:19
2  
Linking to darwinports.com is misleading since that site has nothing to do with the MacPorts package management system and will ask you for your name and email address to be informed when "Darwinports will be available". Either link to MacPorts at macports.org/ports.php?by=name&substr=putty or the PuTTY home page at chiark.greenend.org.uk/~sgtatham/putty – fideli Jan 8 '10 at 2:00
@fideli - Totally my bad and will edit. I do not own a Mac so I could only hope that was the official location for it. – Nathan Adams Jan 10 '10 at 5:02
feedback

meerkat is the prettiest of the ssh tunnel managers

link|improve this answer
Wow, looks pretty slick! – fideli Jan 10 '10 at 5:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.