Files
2024-12-03 15:38:07 +01:00

376 B

+++ date = '2022-09-04T15:39:45' draft = false title = 'SSH Basics' type='post' tags = ['Misc'] +++

Generate Keypair

ssh-keygen

Remote Login with Key

ssh-copy-id <Host>@<Remote>

Disable Access via Password

modify /etc/ssh/sshd_config so that it includes

PasswordAuthentication no

enable changes

systemctl restart ssh