sshにおいて、パスワード認証をやめて鍵認証による接続のみを受け付けるには、設定ファイルである/etc/sshd/sshd_configに以下のような設定をします。
# 鍵認証の設定 RSAAuthentication yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys # rootアクセスの禁止 PermitRootLogin no # パスワード認証の禁止 PermitEmptyPasswords no PasswordAuthentication no