Commit 3c2b94ac883bbbc6f183f3ac3a0e297653335614

Authored by Athos
1 parent 3fe37b63

fix beta environment ssh_config

Showing 1 changed file with 4 additions and 6 deletions   Show diff stats
config/beta/ssh_config
... ... @@ -4,7 +4,7 @@ Host *
4 4 Host reverseproxy
5 5 Hostname 10.10.40.49
6 6 Port 55555
7   - ProxyCommand ssh 164.41.9.49 -p 22 nc %h 55555
  7 + ProxyCommand ssh 164.41.9.49 -p 22 nc %h %p
8 8  
9 9 Host reverseproxy.unconfigured
10 10 Hostname 164.41.9.49
... ... @@ -15,16 +15,14 @@ Host integration
15 15 Host database
16 16 Hostname 10.10.40.47
17 17 # connect via reverseproxy host
18   - Port 55555
19   - ProxyCommand ssh 164.41.9.49 -p %p nc %h 22
  18 + ProxyCommand ssh 164.41.9.49 -p %p nc %h %p
20 19  
21 20 Host social
22 21 Hostname 10.10.40.46
23 22 # connect via reverseproxy host
24   - Port 55555
25   - ProxyCommand ssh 164.41.9.49 -p %p nc %h 22
  23 + ProxyCommand ssh 164.41.9.49 -p %p nc %h %p
26 24  
27 25 Host email
28 26 Hostname 10.10.40.48
29 27 # connect via reverseproxy host
30   - ProxyCommand ssh 164.41.9.49 -p %p nc %h 22
  28 + ProxyCommand ssh 164.41.9.49 -p %p nc %h %p
... ...