2019-10-14 14:48:03 +02:00
|
|
|
---
|
2022-08-17 13:53:56 +02:00
|
|
|
__sshd_packages:
|
2019-10-14 14:48:03 +02:00
|
|
|
- openssh
|
|
|
|
- openssh-server
|
2022-08-17 13:53:56 +02:00
|
|
|
__sshd_sftp_server: /usr/libexec/openssh/sftp-server
|
2019-10-14 14:48:03 +02:00
|
|
|
__sshd_defaults:
|
|
|
|
HostKey:
|
|
|
|
- /etc/ssh/ssh_host_rsa_key
|
|
|
|
- /etc/ssh/ssh_host_ecdsa_key
|
|
|
|
- /etc/ssh/ssh_host_ed25519_key
|
|
|
|
SyslogFacility: AUTHPRIV
|
|
|
|
AuthorizedKeysFile: .ssh/authorized_keys
|
2023-04-10 22:19:29 +02:00
|
|
|
PasswordAuthentication: true
|
|
|
|
PermitRootLogin: true
|
|
|
|
ChallengeResponseAuthentication: false
|
|
|
|
GSSAPIAuthentication: true
|
|
|
|
GSSAPICleanupCredentials: false
|
2020-09-14 17:48:04 +02:00
|
|
|
# Note that UsePAM: no is not supported under RHEL/CentOS. See
|
|
|
|
# https://github.com/willshersystems/ansible-sshd/pull/51#issuecomment-287333218
|
2023-04-10 22:19:29 +02:00
|
|
|
UsePAM: true
|
|
|
|
X11Forwarding: true
|
|
|
|
PrintMotd: false
|
2019-10-14 14:48:03 +02:00
|
|
|
AcceptEnv:
|
|
|
|
- LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
|
|
|
|
- LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
|
|
|
|
- LC_IDENTIFICATION LC_ALL LANGUAGE
|
|
|
|
- XMODIFIERS
|
2022-08-17 13:53:56 +02:00
|
|
|
Subsystem: "sftp {{ __sshd_sftp_server }}"
|
2023-04-10 22:19:29 +02:00
|
|
|
__sshd_os_supported: true
|
2020-10-06 21:11:35 +02:00
|
|
|
__sshd_sysconfig_supports_use_strong_rng: true
|
|
|
|
__sshd_sysconfig_supports_crypto_policy: true
|
2021-06-02 11:17:39 +02:00
|
|
|
__sshd_hostkey_group: ssh_keys
|
|
|
|
__sshd_hostkey_mode: "0640"
|
2021-11-09 15:17:08 +01:00
|
|
|
__sshd_hostkeys_nofips:
|
|
|
|
- /etc/ssh/ssh_host_ed25519_key
|