From 997a7904ed9320ae79d005d9b74607af190b434f Mon Sep 17 00:00:00 2001 From: deajan Date: Wed, 14 Aug 2019 15:17:19 +0200 Subject: [PATCH] Add chacha20-poly1305@openssh.com to cipher list --- sync.conf.example | 1 + 1 file changed, 1 insertion(+) diff --git a/sync.conf.example b/sync.conf.example index 07fe71d..f8a1e77 100644 --- a/sync.conf.example +++ b/sync.conf.example @@ -70,6 +70,7 @@ SSH_COMPRESSION=true ## Optional ssh options. Example to lower CPU usage on ssh compression, one can specify '-T -c arcfour -o Compression=no -x' ## -T = turn off pseudo-tty, -c arcfour = weakest but fasted ssh encryption (destination must accept "Ciphers arcfour" in sshd_config), -x turns off X11 forwarding ## arcfour isn't accepted on most newer systems, you may then prefer any AES encryption if processor has aes-ni hardware acceleration +## If the system does not provide hardware assisted acceleration, chacha20-poly1305@openssh.com is a good cipher to select ## Uncomment the following line to use those optimizations, on secured links only #SSH_OPTIONAL_ARGS="-T -c aes128-ctr -o Compression=no -x"