【備忘錄】配置ssh公鑰登入

oblivionl發表於2024-10-19
cat idrsa.pub >> ~/.ssh/authorized_keys
vim /etc/ssh/sshd_config
service sshd restart

config:

RSAAuthentication yes
PubkeyAuthentication yes

PermitRootLogin yes  #root 使用者能否透過 SSH 登入
PasswordAuthentication no  #禁用密碼登入

相關文章