Commit bf0582c7f7f3b2c7de586f56eccad74e5609a83a
1 parent
f43d7ebf
Exists in
master
and in
86 other branches
Removes spb user from ssh_config.
Signed-off-by: Alessandro Caetano <alessandro.caetanob@gmail.com>
Showing
1 changed file
with
4 additions
and
10 deletions
Show diff stats
config/dev-lappis/ssh_config
... | ... | @@ -3,33 +3,27 @@ Host * |
3 | 3 | |
4 | 4 | Host reverseproxy.unconfigured |
5 | 5 | Hostname 10.0.0.11 |
6 | - User spb | |
7 | 6 | |
8 | 7 | Host reverseproxy |
9 | 8 | Hostname 10.0.0.11 |
10 | - User spb | |
11 | 9 | Port 5555 |
12 | - ProxyCommand ssh spb@10.0.0.11 -p 22 nc %h %p | |
10 | + ProxyCommand ssh 10.0.0.11 -p 22 nc %h %p | |
13 | 11 | |
14 | 12 | Host database |
15 | 13 | Hostname 10.0.0.13 |
16 | - User spb | |
17 | 14 | # connect via reverseproxy host |
18 | - ProxyCommand ssh spb@10.0.0.11 nc %h %p | |
15 | + ProxyCommand ssh 10.0.0.11 nc %h %p | |
19 | 16 | |
20 | 17 | Host social |
21 | 18 | Hostname 10.0.0.14 |
22 | - User spb | |
23 | 19 | # connect via reverseproxy host |
24 | - ProxyCommand ssh spb@10.0.0.11 nc %h %p | |
20 | + ProxyCommand ssh 10.0.0.11 nc %h %p | |
25 | 21 | |
26 | 22 | Host email |
27 | 23 | Hostname 10.0.0.15 |
28 | - User spb | |
29 | 24 | # connect via reverseproxy host |
30 | - ProxyCommand ssh spb@10.0.0.11 nc %h %p | |
25 | + ProxyCommand ssh 10.0.0.11 nc %h %p | |
31 | 26 | |
32 | 27 | Host integration |
33 | 28 | Hostname 10.0.0.11 |
34 | - User spb | |
35 | 29 | # Porta 22 de 10.0.0.11 cai aqui entao nao precisa de ProxyCommand | ... | ... |