From 97ef24458e60ed7781f0bfd6ec0312b17c3c7dd5 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 2 Nov 2022 14:27:17 +0300 Subject: [PATCH] OpenSSH configuration --- ssh/.ssh-config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ssh/.ssh-config diff --git a/ssh/.ssh-config b/ssh/.ssh-config new file mode 100644 index 0000000..2b6d9cc --- /dev/null +++ b/ssh/.ssh-config @@ -0,0 +1,14 @@ +Protocol 2 +IdentitiesOnly yes +Compression no +UpdateHostKeys ask +VerifyHostKeyDNS ask + +Host * + HostKeyAlgorithms ssh-ed25519-cert-v01@openssh.com,ssh-ed25519 + KexAlgorithms curve25519-sha256@libssh.org,curve25519-sha256,sntrup761x25519-sha512@openssh.com + Ciphers chacha20-poly1305@openssh.com,aes256-ctr,aes128-ctr + MACs umac-128-etm@openssh.com,hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128@openssh.com,hmac-sha2-512,hmac-sha2-256 + ControlMaster auto + ControlPath ~/.ssh/sockets/%r@%h-%p + ControlPersist 60 -- 2.44.0