From: Silvio Rhatto Date: Sat, 1 Apr 2017 20:47:54 +0000 (-0300) Subject: Achieve faster SSH speeds using chacha20-poly1305@openssh.com X-Git-Tag: 0.1.0~484 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=982ca1e89a6c4014bf34273f6f42d140d35a4967;p=kvmx.git Achieve faster SSH speeds using chacha20-poly1305@openssh.com --- diff --git a/kvmx b/kvmx index c5bfcd6..aa3fd3c 100755 --- a/kvmx +++ b/kvmx @@ -60,7 +60,8 @@ function kvmx_app_base { # Build a SSH command function __kvmx_ssh_command { - SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=FATAL -o ProxyCommand=none -i $1" + # See http://blog.djm.net.au/2013/11/chacha20-and-poly1305-in-openssh.html + SSH_COMMAND="ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=FATAL -o ProxyCommand=none -o Ciphers=chacha20-poly1305@openssh.com -i $1" } # Create a guest entry at the global user config folder