Information
/etc/ssh/sshd_config is the main configuration file for the OpenSSH server daemon (sshd), which manages secure remote logins and other SSH services.
More information about the openSSH server configuration is available in the "Configure SSH Server" section overview.
configuration specifications for sshd need to be protected from unauthorized changes by non-privileged users.
Solution
Run the following commeand to update access to /etc/ssh/sshd_config as mode 0600 or more restrictive, owner as the user root and the group owner as the group root :
# chown root:root /etc/ssh/sshd_config
# chmod u-x,go-rwx /etc/ssh/sshd_config