What are the steps needed to set up SSH on ubuntu 16.04?
Step 1) I generated my keys on my windows box with puttygen.
Step 2) I logged into my server
Step 3) ?
1 Answer
You need to install the ssh server.
sudo apt install openssh-server
Then, if you wish to only use key-based logins, follow the procedure in the wiki here to transfer the keys.
7