1. クライント端末でキーペア作成
ssh-keygen -t rsa -b 4096
2. クライアント端末からリモート端末へ公開鍵を追加しちゃう(便利!)
~/.ssh/id_rsa.pubを渡す場合ssh-copy-id ${USER}@${target_host}
任意の公開鍵を渡す場合
ssh-copy-id -i${identity_file}${USER}@${target_host}
ssh-keygen -t rsa -b 4096
~/.ssh/id_rsa.pubを渡す場合ssh-copy-id ${USER}@${target_host}
ssh-copy-id -i${identity_file}${USER}@${target_host}
コメント