SSH tunneling

less than 1 minute read

Published:

To forward local port local_port to remote port remote_port while connecting vis ssh on port ssh_port, run

 ssh -p ssh_port -L local_port:remote_host:remote_port username@remote_host

You can forward multiple ports by adding multiple -L options.

If ssh-agent is not available, include the key by adding -i path/to/key.