公開鍵を利用したssh接続設定
2011年10月14日Table of Contents
公開鍵を利用して、ssh接続する設定と確認手順のメモ。
sshの設定変更
[shell]
$ sudo vim /etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile^ .ssh/authorized_keys
[/shell]
sshdのリスタート
[shell]
$ sudo /etc/rc.d/init.d/sshd restart
[/shell]
公開鍵作成
[shell]
$ ssh-keygen -t dsa -N “” -f ~/.ssh/dsa
$ cat ~/.ssh/dsa_pub
ssh-dsa AAAA…
[/shell]
リモートへ公開鍵登録
[shell]
$ vim ~/.ssh/authorized_keys
ssh-rsa AAAA…
[/shell]
接続テスト
[shell]
$ ssh -i ~/.ssh/dsa_pub some.where.remote
[/shell]