41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
|
# Main SSH daemon configuraton
|
||
|
# {{ ansible_managed }}
|
||
|
|
||
|
Port 22
|
||
|
ListenAddress ::
|
||
|
ListenAddress 0.0.0.0
|
||
|
Protocol 2
|
||
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
||
|
HostKey /etc/ssh/ssh_host_rsa_key
|
||
|
SyslogFacility AUTH
|
||
|
LogLevel INFO
|
||
|
LoginGraceTime 30
|
||
|
UsePAM yes
|
||
|
StrictModes yes
|
||
|
X11Forwarding no
|
||
|
PrintMotd no
|
||
|
PrintLastLog yes
|
||
|
TCPKeepAlive yes
|
||
|
AcceptEnv LANG LC_*
|
||
|
|
||
|
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
|
||
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
||
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com,hmac-sha1,hmac-sha1-96,hmac-md5,hmac-md5-96
|
||
|
|
||
|
PubkeyAuthentication yes
|
||
|
PermitEmptyPasswords no
|
||
|
ChallengeResponseAuthentication no
|
||
|
PasswordAuthentication no
|
||
|
{% if 'role_hv' in group_names %}
|
||
|
HostbasedAuthentication yes
|
||
|
HostbasedUsesNameFromPacketOnly yes
|
||
|
IgnoreRhosts no
|
||
|
PermitRootLogin yes
|
||
|
{% else %}
|
||
|
HostbasedAuthentication no
|
||
|
IgnoreRhosts yes
|
||
|
PermitRootLogin no
|
||
|
{% endif %}
|
||
|
|
||
|
Subsystem sftp /usr/lib/openssh/sftp-server -f AUTH -l INFO
|