diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2024-07-16 08:33:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 08:33:25 -0400 |
| commit | 613b27642fa4c5315ae925ec6701a224eec08c39 (patch) | |
| tree | 137b4202e7a362401ed66b9cd85482a4a9a1e642 /content/sshkeys.md | |
| parent | ed8eda775c17b707576744e81f0738724aa64978 (diff) | |
| parent | b5d7e4b977208d89b4615a8ded2525c97e3ba517 (diff) | |
Merge branch 'master' into m-chrzan/spf
Diffstat (limited to 'content/sshkeys.md')
| -rw-r--r-- | content/sshkeys.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/content/sshkeys.md b/content/sshkeys.md index f1c8c0d..7c39413 100644 --- a/content/sshkeys.md +++ b/content/sshkeys.md @@ -123,6 +123,22 @@ Once we\'ve done that, we will reload our SSH daemon: systemctl reload sshd ``` +### **Warning:** + +It is possible that your ssh configuration +will be overridden by the default configuration added when creating +the VPS, which will leave you vulnerable to brute force attacks. To +prevent this, remove the configuration file using the following +command: + +```sh +rm /etc/ssh/sshd_config/50-cloud-init.conf +``` + +Also verify that the `/etc/ssh/ssh_config.d/` path is empty. If not, +make sure that the configuration files in that folder are not +overriding yours. + ### We\'re done! Now you can log in quickly and password-less-ly to your server, despite |
