SSH’ing Into Your Mac 4
Terminal
Hey
I use SSH a lot, it stands for Secure Shell and its main purpose is to connect to other computers, or servers, over a secure connection which you can use to manage the remote computer. For a general overview I recommend reading this Wikipedia article. For this article you do need to be a little tech savvy with Terminal, but if you are way from your computer, or you want to manage another computer this is a very useful technique.
The first step, which you must do, is enable this process in your Firewall. Took me ages to work out while I couldn’t do this on my own Mac. Go to System Preferences > Sharing and check Remote Login. This will open port 22 on your computer and allow SSH to be active.

This should be done on the computer you want to log into. For the purpose of this tutorial you can do it on your own computer, remember to switch it off when you have finished for security purposes. Under the Green icon there will be an address. This combines your ISP Internet address, which is given to you by your ISP, in my case it is part of my Uni address, this will be unique to you. For example it will be a unique identifier, such as a MAC address or account name, on your ISP network, it will then be preceded by your ISP web address. For the most part you don’t need to understand how this address is built. You just need to know what it is. The first part of the address is the user name, for the purpose of most maintenance a normal account will suffice, if you want to do some really high level stuff an administrators account can be used.
You can now log into the remote (or your Mac). Open terminal and type:
ssh user@ISP.address.com
This will start the connection process. If it immediately says connection refused make sure you have enabled SSH as mentioned above. If it says couldn’t connect on port XXX, add the following.
shh -p22 user@ISP.address.com
This will force your SSH connection to run on port 22, instead of a different port. If you, or someone else, has used SSH before it may have been bound to a different port. This will correct this problem.
The first login will ask you to accept and RSA key. This is a method to make sure the two computer are who they say they are. Since you know this accept the key by typing yes and hitting return. This is a security method to keep the connection secure, more information about this process can be found here.
The very final step is to type the password which belongs to the user name. This is the remote Mac’s login password, not your own, my friend who I tried to teach this concept too, didn’t grasp this step for a long while and confusion ensured. Once you have done this, the connection will be secured and you can happily run commands on their computer.
At this point you can run any Terminal command, which is useful to sort out problems with file and folder errors and problems relating to settings. You can also use it to monitor the health of the remote computer by running a process such as ‘top’. The Terminal window, at this point, is exactly the same as one you would use on your own computer. It just happens that the result run on a different computer and are forwarded to you.
When you have finished your session, type exit and the SSH session will finish.
Although this is a tech savvy process and solutions such as screen sharing are more useful to people who do not know how to use Terminal, it is a great technique to learn. You can use it on any Mac, Linux or Unix computer, this method is exactly the same. It is also very low bandwidth, with screen sharing your are sending a lot of data, this technique sends text. Text has a very low data rate, as a result can run on a dial up connection. This sort of process can be used to administer a server over a home network, or to make sure a remote Mac (such as your Grandparents) is still operating fine.
There is a lot more topics on how to use SSH on your Mac. I recommend search the internet for how to find out more, if you are interested on using this technique more.
If you want to keep up with the latests post from Mac Tricks And Tips I recommend you subscribe to the RSS Feed.
Where To Next?
4 Responses to “SSH’ing Into Your Mac”
-
1
The fact that OS X has UNIX underpinnings was one of the reasons I switched in 2005. With Terminal I have access to all the UNIX goodness that is OS X. I use SSH from my Mac to get into the Linux servers at work and do my scripting work. One thing that has made logging into to multiple servers easier with SSH is key exchange.
use ssh-keygen to create keys (for the current user) and copy the public key (the .pub file in the .ssh director) to the authorized_keys file for the userid on the remote machine. Now when you type
ssh userid@remoteserver.comyou won’t be prompted for a password. NOTE: It is best NOT to use key exchange over the public Internet without a password. Use this on local and trusted networks only.Comment By Khürt Williams on June 15th, at 6:06 pm
-
2
Some further aspects of SSH on Mac OS X here:
http://codesnippets.joyent.com/posts/show/1326
(links at the end)
Comment By paul on August 17th, at 5:27 pm
-
3
I have to say, SSH was the best thing they ever came out with. You can’t beat its security nor its reliabilty.
Comment By John Little on September 24th, at 3:24 pm
-
4
PLEASE HELP
I Have one imac and one mac mini
the mini in my friend’s house. The imac is in my house (different house in the same city)
First i go on the mini’s system preferences and i activate remote log in
Then i go on my house on my iMac And i type ssh username@ipadress and then nothing happens it just goes one line down and after a while it says “Connection Timed Out”PLEASE HELP WHAT AM I DOING WRONG
Comment By John on August 30th, at 1:46 am