1、编辑/etc/ssh/sshd_config
将#PasswordAuthentication no该行前面的#去掉,并且将NO修改为YES;
将#PermitRootLogin without-password该行前面的#去掉,并且将“without-password”修改为YES;
2、在root用户下执行以下两个命令
#ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
#ssh-keygen -t dsa -f /etc/ssh/ssh_host_rsa_key
3、执行以后命令进行开始和关闭
update-rc.d ssh enable //系统自动启动SSH服务
update-rc.d ssh disabled //关闭系统自动启动SSH服务