mitigate client bugs CVE-2016-0777 and CVE-2016-0778

This commit is contained in:
Michael Merideth 2016-01-14 14:28:39 -07:00
parent 9c02168480
commit 7da166afb8
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,7 @@ class ssh (
$ssh_config_sendenv_xmodifiers = false,
$ssh_config_ciphers = undef,
$ssh_config_macs = undef,
$ssh_config_use_roaming = 'no',
$ssh_config_template = 'ssh/ssh_config.erb',
$ssh_sendenv = 'USE_DEFAULTS',
$ssh_gssapiauthentication = 'yes',

View File

@ -72,6 +72,9 @@ GSSAPIDelegateCredentials <%= @ssh_gssapidelegatecredentials %>
<% if @ssh_config_forward_x11 != nil -%>
ForwardX11 <%= @ssh_config_forward_x11 %>
<% end -%>
<% if @ssh_config_use_roaming != nil -%>
UseRoaming <%= @ssh_config_use_roaming %>
<% end -%>
<% if @ssh_config_server_alive_interval != nil -%>
ServerAliveInterval <%= @ssh_config_server_alive_interval %>
<% end -%>