Good SSH client for mac OSX

Soldato
Joined
22 Aug 2005
Posts
8,972
Location
Clydebank
Hi all

I know I can just use ssh in the terminal, but I want something more like Putty, which gives me stored logins, ability to 'resume' a session (e.g. when coming out of sleep) etc..

Any one got any suggestions ?
 
I'd just stick with terminal mate and instead of stored logins use keys and for sessions use screen ;)
 
You can also set up aliases in the config file to allow short names, e.g. If you need to log in to university you set up the hostname, port, username and give it an alias of 'uni' then you can do:

ssh uni

Combined with keys this is as quick, if not quicker than putty.
 
Indeed :) - and just to add to this if there is a specific folder you want to start at when you reach the server, add the necessary navigation commands to ~/.profile on the server (such as cd ~/home or whatever) and that will be your base camp when you get in ;)

Anyone else care to expand on cool ways to make ssh life more efficient?
 
isn't cyberduck just an ftp program? how can that even come close to ssh for efficiency?

i still use Forklift as a Finder replacement but I don't really use its FTP functionality a whole lot anymore...
 
Gotta +1 using terminal, no better way! Setup your ~/.ssh/config file with all your connections, create a key pairing between your mac and the server, add your private key to the config via IdentityFile and u get instant login via "ssh myhost" and away you go! How I've done it for a long time now, and I'm sshing all other the place all day!
 
Back
Top Bottom