Linux サーバ構築 ( Fedora Core5 ) - ネットワーク
ssh サーバ
ssh サーバの基本的な設定方法です。
- ssh サーバ の設定
/etc/ssh/sshd_config
PermitRootLogin no root でのログインを禁止 PubkeyAuthentication yes 公開鍵認証を許可 ssh2のみ AuthorizedKeysFile .ssh/authorized_keys PasswordAuthentication no パスワード認証を禁止
- iptables などネットワークの設定を行なってから、ssh サーバ 再起動
なお、ssh 端末で作業をしている場合は、接続できなくなる可能性があるので、接続をオープンにした端末を残しておくこと。# /etc/init.d/sshd restart sshd を停止中: [ OK ] sshd を起動中: [ OK ]
( 最終更新日時 : 2008/08/31 21:24:46 )