sshd_config.j2: add more variables.

This commit is contained in:
Christoph 2020-07-07 21:21:10 +02:00
parent d1c34351b4
commit 7557f4931f
3 changed files with 11 additions and 3 deletions

View File

@ -928,6 +928,12 @@ sshd_host_keys:
- /etc/ssh/ssh_host_ecdsa_key - /etc/ssh/ssh_host_ecdsa_key
- /etc/ssh/ssh_host_ed25519_key - /etc/ssh/ssh_host_ed25519_key
sshd_max_startups: !!str "10:30:100"
sshd_max_auth_tries: 3
sshd_max_sessions: 10
sshd_permit_root_login: !!str "no" sshd_permit_root_login: !!str "no"
sshd_authorized_keys_file: ".ssh/authorized_keys .ssh/authorized_keys2" sshd_authorized_keys_file: ".ssh/authorized_keys .ssh/authorized_keys2"

View File

@ -13,6 +13,8 @@ set_default_limit_nofile: true
# vars used by roles/common/tasks/sshd.yml # vars used by roles/common/tasks/sshd.yml
# --- # ---
sshd_max_auth_tries: 6
sshd_permit_root_login: !!str "yes" sshd_permit_root_login: !!str "yes"
sshd_password_authentication: !!str "yes" sshd_password_authentication: !!str "yes"

View File

@ -54,17 +54,17 @@ HostKey {{ item }}
# The default is 10. # The default is 10.
#MaxStartups 10:30:100 #MaxStartups 10:30:100
#MaxStartups 3 #MaxStartups 3
MaxStartups 10:30:100 MaxStartups {{ sshd_max_startups }}
# Specifies the maximum number of authentication attempts permitted per # Specifies the maximum number of authentication attempts permitted per
# connection. # connection.
# The default is 6. # The default is 6.
MaxAuthTries 3 MaxAuthTries {{ sshd_max_auth_tries }}
# Specifies the maximum number of open sessions permitted per network # Specifies the maximum number of open sessions permitted per network
# connection. # connection.
# The default is 10. # The default is 10.
MaxSessions 10 MaxSessions {{ sshd_max_sessions }}
#----------------------------- #-----------------------------