sshd 的配置

新版本的SSH的配置文件采用的 sshd_conf 和sshd_config.d/ 文件+目录的方式来存储, 这种方式相对于以前的ssh_conf一个文件的配置方式, 有

  1. 鲁棒性强, 一个配置文件有问题, 不会影响其他配置,
  2. 配置更多样性, 可以通过一些组合来配置属性
# sshd -V
OpenSSH_9.2, OpenSSL 3.0.11 19 Sep 2023

这里注意是配置sshd_config, 而不是ssh_config:

# ls /etc/ssh/sshd_config*
/etc/ssh/sshd_config

/etc/ssh/sshd_config.d:
50-sshconfig.conf # 这里的数字, 越小,优先级越高

配置属性和值的方式和以前的配置方式相同, 比如配置sshd端口:

# cat /etc/ssh/sshd_config.d/50-sshconfig.conf 
...
Port 55022
...
  • sshd_config.d override file not working as expected
  • 《网络工程师的Python之路》(paramiko实验0,官网走起,模块串讲,华为)

你可能感兴趣的:(ssh)