cs101:generatesshkeys
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cs101:generatesshkeys [2018/11/09 18:22] – [3. Transfer The Public Key] localadmin | cs101:generatesshkeys [2018/11/09 18:31] (current) – [2. Generate Keys] localadmin | ||
---|---|---|---|
Line 17: | Line 17: | ||
Don't forget to open the proper port (default is 22) in the firewall to allow external connections. | Don't forget to open the proper port (default is 22) in the firewall to allow external connections. | ||
+ | |||
Line 48: | Line 49: | ||
You will be asked to enter the your user password for the SSH server. If the commands finishes without errors, your public key will have been copied to the SSH server. | You will be asked to enter the your user password for the SSH server. If the commands finishes without errors, your public key will have been copied to the SSH server. | ||
+ | |||
+ | ==== 4. Disable Password Authentication ==== | ||
+ | |||
+ | Your SSH server system still isn’t more secure than when you started step one. Although at least one client computer is configured to use key-based authentication, | ||
+ | |||
+ | To disable password authentication, | ||
+ | |||
+ | sudo nano / | ||
+ | |||
+ | Find the line | ||
+ | |||
+ | # | ||
+ | |||
+ | Remove the number sign (#) and change the setting to ‘no’, as below. | ||
+ | |||
+ | PasswordAuthentication no | ||
+ | |||
+ | Save the file by pressing CTRL+X (if using nano). Confirm the edit and the filename and you’re done editing the SSH server' | ||
+ | |||
+ | sudo restart ssh | ||
+ | |||
+ | You will notice that your client will stop asking for the passphrase to decrypt your key if password authentication is disabled on the server. | ||
cs101/generatesshkeys.1541787767.txt.gz · Last modified: by localadmin