sudo apt-get install openssh-server
sudo vi /etc/ssh/sshd_config
PermitRootLogin no ←rootでのログインを禁止
...
IgnoreRhosts yes ←.rhostsおよびhost.equivファイルでの認証を許可しない
...
RhostsAuthentication no ←パスワードなしでログインできるrhosts認証を禁止
...
RSAAuthentication yes ←RSA鍵ファイルを利用したユーザー認証を許可
...
RhostsRSAAuthentication yes ←RSA鍵の交換でrhosts認証を許可(noのまま編集なし)
...
PermitEmptyPasswords no ←パスワードなしでのログインを禁止
...
AllowUsers user ←SSHでログインできるユーザーを限定
(例:ユーザー名が"user"の場合)
sudo /etc/init.d/ssh restart
0 件のコメント:
コメントを投稿