SSH Magic

ssh -L <ipaddres>:<portnumber>:<ipaddress remote server>:<portnumber> localhost

example 1 (ssh server + webserver)

ssh -L 10.0.0.1:2200:10.0.0.2:443 10.0.0.1

enter you credentials on the ssh server 10.0.0.1

On a client in the browser address bar enter

10.0.0.1:2200

you should see the same if you enter 10.0.0.2:443


Now with two ssh servers and a webserver

ssh -L 10.0.0.1:2200:10.0.0.2:443 10.0.0.3

enter you credentials on the ssh server 10.0.0.3