Commit 545f73efb938845ccdd3c90ee01439afb9d2488e
1 parent
b4a68751
Exists in
master
and in
89 other branches
prod/ssh_config: add missing username
Showing
1 changed file
with
10 additions
and
4 deletions
Show diff stats
config/prod/ssh_config
... | ... | @@ -2,27 +2,33 @@ Host * |
2 | 2 | ForwardAgent yes |
3 | 3 | |
4 | 4 | Host reverseproxy |
5 | + User spb | |
5 | 6 | Hostname 10.21.0.4 |
6 | 7 | Port 55555 |
7 | - ProxyCommand ssh 189.9.151.64 -p 22 nc %h 55555 | |
8 | + ProxyCommand ssh spb@189.9.151.64 -p 22 nc %h 55555 | |
8 | 9 | |
9 | 10 | Host reverseproxy.unconfigured |
11 | + User spb | |
10 | 12 | Hostname 189.9.151.64 |
11 | 13 | |
12 | 14 | Host integration |
15 | + User spb | |
13 | 16 | Hostname 189.9.151.64 |
14 | 17 | |
15 | 18 | Host database |
19 | + User spb | |
16 | 20 | Hostname 10.21.0.6 |
17 | 21 | # connect via reverseproxy host |
18 | - ProxyCommand ssh 189.9.151.64 -p %p nc %h 22 | |
22 | + ProxyCommand ssh spb@189.9.151.64 -p %p nc %h 22 | |
19 | 23 | |
20 | 24 | Host social |
25 | + User spb | |
21 | 26 | Hostname 10.21.0.5 |
22 | 27 | # connect via reverseproxy host |
23 | - ProxyCommand ssh 189.9.151.64 -p %p nc %h 22 | |
28 | + ProxyCommand ssh spb@189.9.151.64 -p %p nc %h 22 | |
24 | 29 | |
25 | 30 | Host email |
31 | + User spb | |
26 | 32 | Hostname 10.21.0.7 |
27 | 33 | # connect via reverseproxy host |
28 | - ProxyCommand ssh 189.9.151.64 -p %p nc %h 22 | |
34 | + ProxyCommand ssh spb@189.9.151.64 -p %p nc %h 22 | ... | ... |