2024-01-14 21:49:26 +01:00
|
|
|
{%if sshd_port is defined %}Port {{sshd_port}}{%endif%}
|
|
|
|
PermitRootLogin {{sshd_permit_root_login}}
|
2024-01-14 13:13:57 +01:00
|
|
|
StrictModes yes
|
|
|
|
PubkeyAuthentication yes
|
2024-01-14 21:49:26 +01:00
|
|
|
{%if sshd_kerberos_authentication is defined%}KerberosAuthentication {{sshd_kerberos_authentication}}{%endif%}
|
|
|
|
{%if sshd_gssapi_authentication is defined%}GSSAPIAuthentication {{sshd_gssapi_authentication}}{%endif%}
|
2024-01-14 13:13:57 +01:00
|
|
|
TCPKeepAlive yes
|
2024-01-14 21:49:26 +01:00
|
|
|
Ciphers {{sshd_ciphers}}
|
|
|
|
MACs {{sshd_macs}}
|
|
|
|
KexAlgorithms {{sshd_kex_algorithms}}
|
|
|
|
HostKey {%for k in sshd_host_keys%}{{k}}{%endfor%}
|