码迷,mamicode.com
首页 > 系统相关 > 详细

ssh连接linux遭拒绝

时间:2021-05-24 04:40:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   文件   without   enable   with   火墙   lin   div   pass   

ssh连接linux遭拒绝

ssh连接linux遭拒绝的原因如下:

1,网络是否正常,ip是否能ping通
2,查看ssh服务是否安装,是否开启
3,查看ssh使用的22号端口有没有enable
4,查看/etc/ssh/sshd_config文件的配置
5,查看防火墙是否关闭
 
第4步检查配置文件时:
检查 /etc/ssh/ssh_config文件:
ssh服务端口是否为22,Protocol协议版本是否为2(一般为2安全。1为ssh 1不安全,有可能禁止登陆);
检查/etc/ssh/sshd_config:
    # Authentication:
    LoginGraceTime 120
    PermitRootLogin without passwd
    StrictModes yes
改成
    # Authentication:
    LoginGraceTime 120
    PermitRootLogin yes
    StrictModes yes
或者
当SSH配置被注释掉时,将注释释放就可以。
重启虚拟机。

 

ssh连接linux遭拒绝

标签:str   文件   without   enable   with   火墙   lin   div   pass   

原文地址:https://www.cnblogs.com/xhzj/p/14752224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!