1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Author: Daniel Baumann <daniel.baumann@progress-linux.org>
Description: Setting MACs in ssh_config to UMAC and HMAC.
diff -Naurp openssh.orig/ssh_config openssh/ssh_config
--- openssh.orig/ssh_config
+++ openssh/ssh_config
@@ -43,7 +43,7 @@ Host *
CASignatureAlgorithms ssh-ed25519,rsa-sha2-512,rsa-sha2-256
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
KexAlgorithms curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512,diffie-hellman-group14-sha256,diffie-hellman-group-exchange-sha256
-# MACs hmac-md5,hmac-sha1,umac-64@openssh.com
+ MACs umac-128-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
|