Local port forwarding
DevOps
Command explanation
To forward port of remote host use the following command
ssh -L <LOCAL_PORT>:<TUNNEL_IP>:<DESTINATION_PORT> <user>@<server_ip>
-L stands for local adress
because we are tunneling connection on local machine, TUNNEL_IP is 127.0.0.1
ssh -L <...