I don't actually understand how to do that. I have access to local computer for example 192.168.1.101 with some_user. From that computer i have access to another comp (via vpn) 10.0.132.17 and only from here i can reach access to computer 10.0.132.15 where i need to deploy my script.
so I need to:
$ ssh some_user@192.168.1.101 -> ssh another_user@10.0.132.17 -> ssh another_user@10.0.132.15
may i somehow do: ssh some_user@192.168.1.101 -p 2222
and get access to another_user@10.0.132.15
?
or in python fabric to write somehow env variable?