如何在 Linux Redhat 中将 sshd 配置重置为默认值

如何在 Linux Redhat 中将 sshd 配置重置为默认值

我需要 ssh 配置的第一个版本。位于/etc/ssh/sshd_config。不幸的是,当前的 ssh 配置已被其他开发人员更改了几次,很难理解修改了什么。我想知道是否有任何方法可以重置默认的 ssh 配置,或者如果有人有 ssh 配置的内容,您是否可以分享它。

答案1

只需将文件移走/删除它并重新安装适当的包即可。

$ rpm -qf /etc/ssh/sshd_config   # to find out what package owns the file
openssh-server
$ mv /etc/ssh/sshd_config{,.old} # backup the modified version
$ yum reinstall openssh-server   # will create the file with default configuration

相关内容