33<% end %>
44#---
55
6- # This is the ssh client system-wide configuration file.
6+ # This is the ssh client system-wide configuration file.
77# See ssh_config(5) for more information on any settings used. Comments will be added only to clarify why a configuration was chosen.
8- #
8+ #
99# Created for OpenSSH v5.9
1010
1111# Basic configuration
@@ -49,15 +49,15 @@ StrictHostKeyChecking ask
4949# CBC: is true if you want to connect with OpenSSL-base libraries
5050# eg ruby Net::SSH::Transport::CipherFactory requires cbc-versions of the given openssh ciphers to work
5151# -- see: (http://net-ssh.github.com/net-ssh/classes/Net/SSH/Transport/CipherFactory.html)
52- #
52+ #
5353<% if @cipher %>
5454Ciphers <%= @cipher %>
5555<% end %>
5656
5757# **Hash algorithms** -- Make sure not to use SHA1 for hashing, unless it is really necessary.
58- # Weak HMAC is sometimes required if older package versions are used
58+ # Weak HMAC is sometimes required if older package versions are used
5959# eg Ruby's Net::SSH at around 2.2.* doesn't support sha2 for hmac, so this will have to be set true in this case.
60- #
60+ #
6161<% if @mac %>
6262MACs <%= @mac %>
6363<% end %>
@@ -68,7 +68,7 @@ MACs <%= @mac %>
6868# **Key Exchange Algorithms** -- Make sure not to use SHA1 for kex, unless it is really necessary
6969# Weak kex is sometimes required if older package versions are used
7070# eg ruby's Net::SSH at around 2.2.* doesn't support sha2 for kex, so this will have to be set true in this case.
71- #
71+ #
7272<% if @kex %>
7373KexAlgorithms <%= @kex %>
7474<% end %>
@@ -108,4 +108,7 @@ PermitLocalCommand no
108108Compression yes
109109
110110#EscapeChar ~
111- #VisualHostKey yes
111+ #VisualHostKey yes
112+
113+ # http://undeadly.org/cgi?action=article&sid=20160114142733
114+ UseRoaming no
0 commit comments