Forward remote port to a local one via SSH tunnel
ssh -L <LOCAL_PORT>:127.0.0.1:<REMOTE_PORT> remote_server
TCP connections to <LOCAL_PORT>
will be forwarded to 127.0.0.1:<REMOTE_PORT>
on remote host remote_server
ssh -L <LOCAL_PORT>:127.0.0.1:<REMOTE_PORT> remote_server
TCP connections to <LOCAL_PORT>
will be forwarded to 127.0.0.1:<REMOTE_PORT>
on remote host remote_server