blob: 9c118dad8c4c9a30243ac3aef61aaa7606c5a55a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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
# 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
|