blob: aa3d576c4a2716d190ea9d33a95cfda41c3a6dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Author: Daniel Baumann <daniel.baumann@progress-linux.org>
Description: Setting IdentityFile in ssh_config to ED25519 and RSA.
diff -Naurp openssh.orig/ssh_config openssh/ssh_config
--- openssh.orig/ssh_config
+++ openssh/ssh_config
@@ -35,10 +35,8 @@ Host *
# ConnectTimeout 0
PubkeyAcceptedKeyTypes ssh-ed25519-cert-v01@openssh.com,ssh-ed25519,rsa-sha2-512-cert-v01@openssh.com,rsa-sha2-512,rsa-sha2-256-cert-v01@openssh.com,rsa-sha2-256
# StrictHostKeyChecking ask
-# IdentityFile ~/.ssh/id_rsa
-# IdentityFile ~/.ssh/id_dsa
-# IdentityFile ~/.ssh/id_ecdsa
-# IdentityFile ~/.ssh/id_ed25519
+ IdentityFile ~/.ssh/id_ed25519
+ IdentityFile ~/.ssh/id_rsa
# Port 22
# Protocol 2
CASignatureAlgorithms ssh-ed25519,rsa-sha2-512,rsa-sha2-256
|