From c76fc688a42a7b5365459327c744df7788074ab3 Mon Sep 17 00:00:00 2001 From: Jack Ivanov Date: Fri, 26 Aug 2016 00:47:08 +0300 Subject: [PATCH] ssh fixes --- roles/security/templates/sshd_config.j2 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/roles/security/templates/sshd_config.j2 b/roles/security/templates/sshd_config.j2 index 453a561a..c014eb46 100644 --- a/roles/security/templates/sshd_config.j2 +++ b/roles/security/templates/sshd_config.j2 @@ -54,11 +54,3 @@ MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@op # TODO: I haven't seen anyone review these yet # PubkeyAcceptedKeyTypes ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ssh-ed25519-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519 -{% if ssh_tunneling_enabled is defined and ssh_tunneling_enabled == "y" %} -Match Group algo - AllowTcpForwarding remote - AllowAgentForwarding no - AllowStreamLocalForwarding no - PermitTunnel no - X11Forwarding no -{% endif %}