blob: de4cdb87b5b81062d4e47640a1737753f95e01e9 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
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
# Actually, scratch that. Don't use known_hosts at all, what is this even for?
# Kappa implied.
UserKnownHostsFile /dev/null
# Keep ssh connections alive.
# Wonder why this isn't default.
ServerAliveCountMax 3
ServerAliveInterval 15
# Exit if port forwarding fails.
# Again, why is this not a default?
ExitOnForwardFailure yes
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 vpn.egort.name vpn tensin-vpn
Hostname vpn.egort.name
User algo
Port 80
ForwardAgent yes
Host egort.name web tensin-web
Hostname egort.name
User egor
Port 22
ForwardAgent yes
Host 192.168.203.13 pc pc1 tensin-pc tensin-pc1
User egor
ForwardAgent yes
Host 192.168.205.3 pc.vpn pc1.vpn tensin-pc.vpn tensin-pc1.vpn
Hostname 192.168.205.3
User egor
ForwardAgent yes
# TODO: remove tensin-raspi1?
Host 192.168.203.4 pi pi1 raspi raspi1 tensin-raspi tensin-raspi1
User egor
ForwardAgent yes
Host 192.168.205.1 pi.vpn pi1.vpn raspi.vpn raspi1.vpn tensin-raspi.vpn tensin-raspi1.vpn
Hostname 192.168.205.1
User egor
ForwardAgent yes
Host 192.168.203.8 pi2 raspi2 tensin-raspi2
User egor
ForwardAgent yes
Host 192.168.205.4 pi2.vpn raspi2.vpn tensin-raspi2.vpn
Hostname 192.168.205.4
User egor
ForwardAgent yes
Host gordey tensin-gordey
Hostname 134.122.93.240
User root
|