Using SSH tunnels

In some cases you may need to access remote hosts that have private IP addresses or are protected behind a firewall. These hosts might be only accessible through an intermediate login host. The SSH tunnels (SSH port forwarding) facilitate access to multiple hosts protected behind a single public host exposed to the Internet. Once the tunnels are established the hosts behind the firewall can be directly accessed from your machine. Examples where tunnels can be beneficial:

In the following examples the hostnames public.a.acnca.pt and internal.a.acnca.pt as well as the port numbers are placeholders that should be replaced by actual real hostnames and port numbers according to your scenario.

jump over SSH hosts easily from the command line

Basic jump host syntax:

ssh -J username@public-remote-host   username@internal-remote-host

Example of using the SSH jump host functionality to access the SSH port (port number 22) of the remote host internal.a.acnca.pt through a publicly reachable host public.a.acnca.pt. Most of the examples in this page are valid both for ssh and its related commands such as scp and sftp.

ssh -J public.a.acnca.pt  username@internal.a.acnca.pt
scp -J public.a.acnca.pt  mylocalfile  username@internal.a.acnca.pt:
sftp -J public.a.acnca.pt username@internal.a.acnca.pt

ssh -J username@public.a.acnca.pt  username@internal.a.acnca.pt

forwarding of X11 windows

port forwarding from local to remote in detail

Basic port forwarding syntax:

ssh -L local-port:internal-remote-host:internal-remote-port   public-remote-host

Example of establishing a tunnel to access the SSH port (port number 22) of the remote host internal.a.acnca.pt through a publicly reachable host public.a.acnca.pt. We pick a random local-port (e.g. 31732) that is then mapped to the port 22 of internal.a.acnca.pt.

ssh -L 31732:internal.a.acnca.pt:22   public.a.acnca.pt

Once the SSH connection to public.a.acnca.pt is established the host internal.a.acnca.pt can be directly accessed from your local host by connecting to the local-port on the loopback address. Just create a second command line terminal and try:

ssh -p 31732 username@127.0.0.1
scp -P 31732 mylocalfile  username@127.0.0.1:
sftp -P 31732 127.0.0.1

Once the SSH connection to the intermediate host is closed the tunnels will stop working. Therefore the initial SSH connection must be kept alive while needed and the connections to the remote internals hosts must be performed from a separate local terminal window.

Another example where both port 22 (SSH) and port 80 (HTTP) are both mapped to local ports. With this both ports are forwarded over a single SSH connection. The access to the web server from the local host can be tested using curl.

ssh -L 31732:internal.a.acnca.pt:22 -L 8080:internal.a.acnca.pt:80  public.a.acnca.pt

curl http://127.0.0.1:8080

port forwarding from remote to local in detail

Basic remote port forwarding syntax:

ssh -R remote-port-on-public-host:local-host:local-port   public-remote-host

Example of forwarding the remote-port number 65532 on public.a.acnca.pt to the port 22 of the local host named myotherlocalhost.

ssh -R 65532:myotherlocalhost:22   public.a.acnca.pt

Then from public.a.acnca.pt you can access myotherlocalhost in your local network with:

ssh -p 65532 127.0.0.1

jump host via config file

The basic configuration for remote access via a jump host

Host name-for-the-internal-remote-host
Hostname actual-internal-remote-host
User username-in-actual-internal-remote-host
ProxyJump username@public-remote-host
HostKeyAlias name-for-the-internal-remote-host

Example of configuration:

Host ncg-internal
Hostname internal.a.acnca.pt
User username-for-internal
ProxyJump username@public.a.acnca.pt
HostKeyAlias ncg-internal

Accessing the configured host:

ssh ncg-internal

port forwarding via config file

The basic configuration for port forwarding:

Host public-remote-host
LogLevel FATAL
LocalForward local-port internal-remote-host:internal-remote-port

Host name-for-the-internal-remote-host
Hostname 127.0.0.1
User username
Port local-port
HostKeyAlias name-for-the-internal-remote-host

Example of port forwarding for both SSH (port 22) and HTTP (port 80):

Host public.a.acnca.pt
LogLevel FATAL
LocalForward 31732 internal.a.acnca.pt:22
LocalForward 8080  internal.a.acnca.pt:80

Host ncg-internal
Hostname 127.0.0.1
User username
Port 31732
HostKeyAlias ncg-internal

Accessing the configured host

ssh ncg-internal
curl http://127.0.0.1:8080

(*) notice that you cannot use the hostname ncg-internal with curl as this is a hostname that is only recognized by SSH related applications (ssh, scp, sftp).

using socks proxies

The basic command line usage to establish a socks server via SSH:

ssh -D local-port  username@public-remote-host

The basic $HOME/.ssh/config setup to establish a socks server:

Host public-remote-host
DynamicForward local-port
User username

Example of socks proxy use with Firefox:

ssh -D 31733 username@public.a.acnca.pt

Then in firefox:

  1. Goto Preferences->Network Settings:
  2. Select Manual proxy configuration
  3. Enter in SOCKS Host: 127.0.0.1
  4. Enter in Port: 31733
  5. If needed add local networks to be excluded from the proxy using No proxy for
  6. If needed add the options related to DNS proxying

(*) notice that all your http request will now be forwarded through the socks proxy, to restore the previous settings choose No proxy in the Preferences->Network Settings.

(*) as in the other examples the TCP port number to be allocated might need to be adjusted to match a free port number in your local machine (desktop, laptop, etc).

using sshuttle

The tool sshuttle is available in many Linux distributions. It uses SSH in combination with iptables and other functionalities to easily establish tunnels with better performance and a behavior more similar to a VPN. Instead of establishing a direct end-to-end TCP connection to the remote internal hosts, sshutle intercepts local packets, sends their payload over SSH and establishes connections from the remote public host to the internal hosts. This prevents some of the performance issues associated with TCP end-to-end connections through SSH inner tunnels and also enables other capabilities such as accessing more transparently hosts and services behind the firewall.

Requirements:

Template for the sshutle configuration file:

ip-network-A/ip-prefix-A
ip-network-B/ip-prefix-B
ip-network-X/ip-prefix-X
--auto-nets
--auto-hosts
--seed-hosts
internal-remote-host-01,internal-remote-host-02, ...
--remote
username@public-remote-host

Example that needs to be adjusted to your actual needs:

192.168.1.0/24
192.168.2.0/24
--auto-hosts
--seed-hosts
internal.a.acnca.pt, otherinternal.a.acnca.pt, anotherinternal.a.acnca.pt
--remote 
username@public.a.acnca.pt

Invoking sshutle from the command line:

sshuttle @$HOME/.ssh/sshutle-ncg.conf

Then you can ssh into the hosts directly:

ssh internal.a.acnca.pt

If the remote internal host has other services running such as a web server they will be also accessible:

curl http://otherinternal.a.acnca.pt

Revision #71
Created 11 January 2021 12:16:32 by Jorge Gomes
Updated 3 June 2025 13:03:34 by João Paulo Martins