b / w sshd_config和sshd命令有什么区别?

时间:2016-12-09 12:09:36

标签: unix redhat sshd

我更改了sshd_config文件,将strictmodes设置为no,然后重新启动sshd服务。 但是,我得到两个不同的输出,如下所示。

root@localhost httpd]# service sshd stop
Stopping sshd:                                             [  OK  ]
[root@localhost httpd]# service sshd start
Starting sshd:                                             [  OK  ]
[root@localhost httpd]# sudo cat /etc/ssh/sshd_config | grep StrictModes
#StrictModes no
[root@localhost httpd]# sshd -T | grep strictmodes
strictmodes yes

1 个答案:

答案 0 :(得分:0)

大多数配置文件都有#作为注释,因此不使用它背后的选项,因此您的服务器使用其默认值yes。将sshd_config中的行更改为

StrictModes no

然后重启服务。它将被应用。