最近新安装了fedara,去掉了图形界面,想使用putty来连接,结果报错:
首先在fedaro上安装了ssh端:
yum install openssh-server
错误信息:network error:connection time out
在主机上通过ping命令能平ping通,说明可能是防火墙的原因。(连接虚拟机没有响应)
于是尝试将防火墙打开:
chkconfig iptables on
再次连接结果报错:
Network:connection refused
解决方法如下:
vi /etc/ssh/sshd_config 将PermitRootLogin的注释取消,或者将no改为yes。
service sshd restart
至此问题得到解决
相似问题参见:
http://blog.csdn.net/lyhdream/article/details/40709215
参考地址:
http://yeyuan.iteye.com/blog/1266484