blob: 4d124914a671f855ddbb1428e645de8edd5f6cf8 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
AddKeysToAgent yes
# Make known_hosts actually readable.
HashKnownHosts no
# Don't verify localhost, duh.
NoHostAuthenticationForLocalhost yes
# Add server keys to known_hosts silently, I never bother to verify them
# anyway.
StrictHostKeyChecking no
# Keep ssh connections alive.
# Wonder why this isn't default.
ServerAliveCountMax 3
ServerAliveInterval 15
# Actually, scratch that. Don't use known_hosts at all, what is this even for?
# Kappa implied.
UserKnownHostsFile /dev/null
Include ~/.ssh/config_local
Host bitbucket.org
User git
Host github.com
User git
Host alt-bitbucket
User git
Hostname altssh.bitbucket.org
Port 443
Host alt-github
User git
Hostname ssh.github.com
Port 443
Host 64.225.107.220 tensin.vpn
HostName 64.225.107.220
User algo
Port 110
IdentityFile ~/.ssh/algo.pem
|