1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_sshd.git synced 2024-08-16 11:59:49 +02:00

update variable names

This commit is contained in:
L3D 2019-04-09 22:19:42 +02:00
parent 7b7abebb68
commit 8defb65464
2 changed files with 6 additions and 6 deletions

View file

@ -21,6 +21,6 @@ sshd_password_authentication: 'no' # 'yes' or 'no'
# Allow optional cryptho methods (NOT RECOMENDED) # Allow optional cryptho methods (NOT RECOMENDED)
generate_ecdsa_too: false generate_ecdsa_too: false
use_diffie-hellman-group-exchange-sha256: false use_diffie_hellman_group_exchange_sha256: false
use_aes256-ctr: false use_aes256_ctr: false
use_hmac-sha2-512: false use_hmac_sha2_512: false

View file

@ -12,7 +12,7 @@ TCPKeepAlive yes
#KexAlgorithms curve25519-sha256@libssh.org, #KexAlgorithms curve25519-sha256@libssh.org,
# diffie-hellman-group-exchange-sha256 # diffie-hellman-group-exchange-sha256
KexAlgorithms curve25519-sha256@libssh.org{% KexAlgorithms curve25519-sha256@libssh.org{%
if use_diffie-hellman-group-exchange-sha256 %},diffie-hellman-group-exchange-sha256{% endif %} if use_diffie_hellman_group_exchange_sha256 %},diffie-hellman-group-exchange-sha256{% endif %}
# Server authentication # Server authentication
@ -59,7 +59,7 @@ endif %}PubkeyAcceptedKeyTypes ssh-ed25519-cert-v01@openssh.com,ssh-ed25519
# aes192-ctr, # aes192-ctr,
# aes128-ctr # aes128-ctr
Ciphers chacha20-poly1305@openssh.com{% Ciphers chacha20-poly1305@openssh.com{%
if use_aes256-ctr %},aes256-ctr{% endif %} if use_aes256_ctr %},aes256-ctr{% endif %}
# Message authentication codes # Message authentication codes
@ -72,7 +72,7 @@ if use_aes256-ctr %},aes256-ctr{% endif %}
# hmac-ripemd160, # hmac-ripemd160,
# umac-128@openssh.com # umac-128@openssh.com
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com{% MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com{%
if use_hmac-sha2-512 %},hmac-sha2-512{% endif %} if use_hmac_sha2_512 %},hmac-sha2-512{% endif %}
# Allow client to pass locale environment variables # Allow client to pass locale environment variables