#vim /etc/ssh/sshd_config     //添加以下配置

PermitRootLogin yes #允许root登录
PermitEmptyPasswords no #不允许空密码登录
PasswordAuthentication yes # 设置是否使用口令验证。
此时以可以用root用户登录,但是需要检查是否开启了ssh监听服务
#vim /etc/inetd.conf  // 去掉ssh前面的#
#vim /etc/rc.conf  //开启ssh,添加以下配置
sshd_enable="yes"

#/etc/rc.d/sshd start  //启动ssh服务即可

参考:1