公開鍵(Public Key)のみでsshする。確認どころ備忘録。
- /etc/ssh/sshd_config
- Protocol 2
- PubkeyAuthentication yes : これ version2用だから
- PasswordAuthentication no : パスワード認証はできないようにしとく
- $HOME/.ssh/authorized_keys
- 公開鍵を配置
- パーミションをチェック。go+w だと /var/log/secure あたりに "bad ownership or modes for file" というエラーがでるぞ。600にしとけ。
- /etc/init.d/sshd restart
sshd を再起動するのを忘れない。