SecureCRT连接Ubuntu,centos失败,长时间的重新连接,连接不了解决办法
Posted 无花1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SecureCRT连接Ubuntu,centos失败,长时间的重新连接,连接不了解决办法相关的知识,希望对你有一定的参考价值。
Ubuntu,centos默认未安装ssh远程加密连接服务。
使用命令,安装即可。
0.sudo apt-get install openssh-server openssh-client
1.rpm -qa | grep ssh查看SSH是否安装 若没有执行第0步
2.service sshd status 查看是否开启 如果没有继续下面
3.启动SSH服务 service sshd restart 停止服务service sshd stop
4.netstat -antp | grep sshd 查看是否启动22端口或者ps -aux|grep sshd 看是否有sshd服务
5.chkconfig sshd on 设置SSH服务为开机启动
6.如果还没好,把防火墙清空或者关掉 iptables -F 或者service iptables stop
以上是关于SecureCRT连接Ubuntu,centos失败,长时间的重新连接,连接不了解决办法的主要内容,如果未能解决你的问题,请参考以下文章