I need to make a tunnel from a client box to a server. The problem is that there are 2 boxes between them:
CLIENT --- FIREWALL ---{ SERVER1 --- SERVER1.2 }
CLIENT ============================= SERVER1.2
I know how to do it when I have just one box in between:
CLIENT --- FIREWALL ---{ SERVER1 }
CLIENT ==================SERVER1
From the client box :
ssh -l **user_firewall** -L 8112:**server1_ip**:22 **firewall_ip** cat -
And then :
ssh -C -c arcfour256 localhost -l **user_server1** -p 8112
Would anybody please be able to provide some insight into this problem. If you need more info I can glady provide it.