diff options
| -rw-r--r-- | .ssh/config | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.ssh/config b/.ssh/config index 4fd37fb..9c118da 100644 --- a/.ssh/config +++ b/.ssh/config @@ -11,5 +11,12 @@ Host *.local ForwardAgent yes StreamLocalBindUnlink yes +# ssh -v kex: algorithm: [email protected] +# post-quantum algorithm hangs and fails to exchange keys on ubuntu. +# this falls back to the elliptic curve 25519 algorithm. +# FIXME: remove this once debian works +Host git.sr.ht github.com + KexAlgorithms curve25519-sha256,[email protected] + Host * ServerAliveInterval 300 |
