blob: 465e887d8904f6f97d5a4ff870d02dfeb8c4173a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Match host * exec "gpg-connect-agent UPDATESTARTUPTTY /bye"
Host *iso.local
Port 22
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Host *.local
User a14m
Port 39901
ForwardAgent yes
StreamLocalBindUnlink yes
RemoteForward /run/user/1000/gnupg/S.gpg-agent %d/.gnupg/S.gpg-agent
# 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
|