◆SSHの設定
現状のSSHの設定はこんな感じです。
[root@localhost ~]#grep -v ^# /etc/ssh/sshd_config
Protocol 2 ←sshバージョン2で接続
SyslogFacility AUTHPRIV
PermitRootLogin no ←rootユーザでの接続禁止
PermitEmptyPasswords no ←パスワードなしの接続禁止
PasswordAuthentication yes ←パスワード認証を使用して接続
ChallengeResponseAuthentication no ←チャレンジレスポンス認証を禁止
GSSAPIAuthentication yes
GSSAPICleanupCredentials yes
UsePAM yes
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL
X11Forwarding yes
Subsystem sftp /usr/libexec/openssh/sftp-server
もう少し調べてみます。