CentOS-5.5_64bit log05
---------------------
OpenSSHを構築

# yum -y install openssh-server
# yum -y install opnessh-clients

opensshの設定

# vi /etc/ssh/sshd_config

#PasswordAuthentacation yes を変更
PasswordAuthentacation yes (パスワードによるログイン)

#PermitEmptyPasswords no を変更
PermitEmptyPasswords no (パスワードなしによるログインの禁止)




--------------------------------------------------------------------------------