打开sshd服务
service sshd status
chkconfig sshd on // sshd服务开机自动启动
service sshd start
防火墙打开22端口
iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
原因如下:
1.在/etc/ssh/sshd_config文件中找到ssh所对应的端口
2.在/etc/ssh/sshd_config文件中设置PasswordAuthentication yes
3.在/etc/ssh/sshd_config文件中设置PermitRootLogin yes(这里只有root一个用户名,只能先用root连接)
在编辑配置文件 后,需要重启 ssh服务:service sshd restart
4.有时候网络会连接不能,应该是iptable的问题,这里用比较粗犷的方法,直接关闭:service iptables stop