Allow my computer (ubuntu) to accept SSH connections
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Dreaming in Puzzles
--
Chapters
00:00 Allow My Computer (Ubuntu) To Accept Ssh Connections
00:31 Accepted Answer Score 25
00:52 Answer 2 Score 10
01:33 Thank you
--
Full question
https://superuser.com/questions/211500/a...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#ubuntu #ssh
#avk47
ACCEPTED ANSWER
Score 25
Here's a quick way to install the SSH server in Ubuntu:
sudo apt-get install openssh-server
But if I were you, I'd look at some documentation before (it's very complete and very straightforward).
I think you'll be particularly interested in Specify Which Accounts Can Use SSH, among other things.
ANSWER 2
Score 10
1) How do I turn on this feature?
As @m.capobianco mentioned, you do the following to get openssh-server
installed:
apt-get install openssh-server
Make sure that your desktop has a static IP (assigned by your home router), otherwise you will have to get up and check the ip (if it changed since last use).
2) How do I make sure that it can only be used by my laptop and not anyone out in the internet?
Easy, make sure no port forward is enabled from your router (external side) to your desktop. You are pretty safe behind your router, also SSH carries with it encryption and user based access.
Hope that clears that up.