Linux服务器配置---ssh配置

Posted 一生有你llx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux服务器配置---ssh配置相关的知识,希望对你有一定的参考价值。

Ssh配置    

        通过配置文件,我们可以有效的管理ssh

1、空闲时间关闭连接

        1)修改配置文件“/etc/ssh/sshd_config”,设置clientAliveInterval和clientAliveCountMax,注意取消前面的注释

[[email protected] wj]# gedit /etc/ssh/sshd_conf

ClientAliveInterval 10       //超时时间,10s

ClientAliveCountMax 0        //超时次数,0

 

[[email protected] wj]# service sshd restart           //重启服务

停止sshd                                               [确定]

正在启动sshd                                            [确定]

        2)测试超时,登录之后不要进行任何操作,10s之后连接就会关闭

[[email protected] wj]# ssh [email protected]

[email protected]‘s password: 

Last login: Thu Aug 16 08:22:25 2018 from 192.168.0.119

already login

[[email protected] ~]$ Connection to 192.168.0.119 closed by remote host.

Connection to 192.168.0.119 closed.

[[email protected] wj]#

 

2、输入密码超时,关闭连接

        1)修改配置文件“/etc/ssh/sshd_config”,设置参数“LoginGraceTime” 

[[email protected] wj]# gedit /etc/ssh/sshd_config 

LoginGraceTime 10s    //这里默认是2m,代表2分钟。设置为10s,取消注释

 

[[email protected] wj]# service sshd restart           //重启服务

停止sshd                                               [确定]

正在启动sshd                                            [确定]

        2)测试,登录的时候不输入密码,连接会自动断开

[[email protected] wj]# ssh [email protected]

[email protected]‘s password: 

Connection closed by UNKNOWN

 

 

 
 
做了一个Linux学习的平台,目前出来一个个形,各位可以参考使用
链接:https   ://pan.baidu.com/s/1GOLVU2CbpBNGtunztVpaCQ密码:n7bk
技术分享图片

以上是关于Linux服务器配置---ssh配置的主要内容,如果未能解决你的问题,请参考以下文章

Linux下的ssh的配置文件。

Linux服务器配置---ssh配置

Linux——配置服务器间的免密登录

Ubuntu 配置 ssh 登陆

Linux配置免密登录

Linux ssh服务常用配置的详细描述及建议配置