SSH通信設定

ホーム ←前へ 目次 次へ→

キーの作成

hogeでログイン
                                                                                                   
[hoge@hogehoge hoge]$ ssh-keygen -t rsa1
Generating public/private rsa1 key pair.
Enter file in which to save the key (/home/hoge/.ssh/identity):     ←Enterを押す
Created directory '/home/hoge/.ssh'.
Enter passphrase (empty for no passphrase):                         ←パスワード入力
Enter same passphrase again:                                        ←もっかいパスワード入力
Your identification has been saved in /home/hoge/.ssh/identity.
Your public key has been saved in /home/hoge/.ssh/identity.pub.
The key fingerprint is:
73:42:bc:75:36: df:8f:fa:42: 68:c3:53:6d:df:42:cc hoge@hogehoge
[hoge@hogehoge hoge]$ cd .ssh
[hoge@hogehoge .ssh]$ cp identity.pub authorized_keys
[hoge@hogehoge .ssh]$ 
identityをクライアントにコピーする。

設定ファイルの編集

rootになり、「/etc/ssh/sshd_config」を編集
PermitRootLogin norootでのログインを許可しない
RSAAuthentication yesRSA認証を許可する
RhostsAuthentication norhosts認証を許可しない
RhostsRSAAuthentication norhosts-RSA認証を許可しない
HostbasedAuthentication noホストベース認証を許可しない
PasswordAuthentication noパスワード認証を許可しない
PermitEmptyPasswords no空のパスワードを許可しない
ChallengeResponseAuthentication noチャレンジレスポンス認証を許可しない
X11Forwarding noX11転送を許可しない
AllowUsers hoge許可するユーザ

sshdの再起動

                                                                                                   
[root@bogeboge root]# /etc/rc.d/init.d/sshd restart
[root@svhoge root]# 

mkoma@mx.biwa.ne.jp

ホーム ←前へ 目次 次へ→