Connect with SSH through Cloudflare Tunnel
The Secure Shell Protocol (SSH) enables users to remotely access devices through the command line. With Cloudflare Zero Trust, you can make your SSH server available over the Internet without the risk of opening inbound ports on the server.
Cloudflare Zero Trust offers two solutions to provide secure access to SSH servers:
- Private subnet routing with Cloudflare WARP to Tunnel
- Public hostname routing with
cloudflared access
Set up an SSH server in GCP
This example walks through how to set up an SSH server on a Google Cloud Platform (GCP) virtual machine (VM), but you can use any machine that supports SSH connections.
1. Create an SSH key pair
Before creating your VM instance you will need to create an SSH key pair.
Open a terminal and type the following command:
$ ssh-keygen -t rsa -f ~/.ssh/gcp_ssh -C <username in GCP>Enter your passphrase when prompted. It will need to be entered twice.
Two files will be generated:
gcp_ssh
which contains the private key, andgcp_ssh.pub
which contains the public key.In the command line, enter:
$ cat ~/.ssh/gcp_ssh.pubCopy the output. This will be used when creating the VM instance in GCP.
2. Create a VM instance in GCP
Now that the SSH key pair has been created, you can create a VM instance.
- In your Google Cloud Console, create a new project.
- Go to Compute Engine > VM instances.
- Select Create instance.
- Name your VM instance, for example
ssh-server
. - Scroll down to Advanced options > Security > Manage Access.
- Under Add manually generated SSH keys, select Add item and paste the public key that you have created.
- Select Create.
- Once your VM instance is running, open the dropdown next to SSH and select Open in browser window.
Connect to SSH server with WARP to Tunnel
You can use Cloudflare Tunnel to create a secure, outbound-only connection from your server to Cloudflare’s edge. This requires running thecloudflared
daemon on the server. Users reach the service by installing the Cloudflare WARP client on their device and enrolling in your Zero Trust organization. Remote devices will be able to connect as if they were on your private network. By default, all devices enrolled in your organization can access the service unless you build policies to allow or block specific users. 1. Connect the server to Cloudflare
Create a Cloudflare Tunnel for your server by following our dashboard setup guide. You can skip the connect an application step and go straight to connecting a network.
In the Private Networks tab for the tunnel, enter the private IP address of your server (or a range that includes the server IP). In GCP, the server IP is the Internal IP of the VM instance.
(Optional) Set up Zero Trust policies to fine-tune access to your server.
2. Set up the client
In order for devices to connect to your Zero Trust organization, you will need to:
- Deploy the WARP client on your devices in Gateway with WARP mode. The Cloudflare certificate is only required if you want to display a custom block page or perform HTTP filtering.
- Create device enrollment rules to determine which devices can enroll to your Zero Trust organization.
3. Connect as a user
Once you have set up the application and the user device, the user can now SSH into the machine using its private IP address. If your SSH server requires an SSH key, the key should be included in the command.
$ ssh -i ~/.ssh/gcp_ssh <username>@<server IP>
Connect to SSH server with cloudflared access
Cloudflare Tunnel can also route applications through a public hostname, which allows users to connect to the application without the WARP client. This method requires having cloudflared
installed on both the server machine and on the client machine, as well as an active zone on Cloudflare. The SSH traffic is proxied over this connection, and the user logs in to the server with their Cloudflare Access credentials.
The public hostname method can be implemented in conjunction with routing over WARP so that there are multiple ways to connect to the server. You can reuse the same tunnel for both the private network and public hostname routes.
1. Connect the server to Cloudflare
Create a Cloudflare Tunnel by following our dashboard setup guide.
In the Public Hostnames tab, choose a domain from the drop-down menu and specify any subdomain (for example,
ssh.example.com
).For Service, select SSH and enter
localhost:22
.Select Save hostname.
(Recommended) Add a self-hosted application to Cloudflare Access in order to manage access to your server.
2. Connect as a user
Users can connect from their device by authenticating through cloudflared
, or from a browser-rendered terminal.
Native Terminal
Install
cloudflared
on the client machine.Make a one-time change to your SSH configuration file:
$ vim ~/.ssh/configInput the following values; replacing
ssh.example.com
with the hostname you created.Host ssh.example.comProxyCommand /usr/local/bin/cloudflared access ssh --hostname %hThe
cloudflared
path may be different depending on your OS and package manager. For example, if you installedcloudflared
on macOS with Homebrew, the path is/opt/homebrew/bin/cloudflared
.You can now test the connection by running a command to reach the service:
$ ssh <username>@ssh.example.comWhen the command is run,
cloudflared
will launch a browser window to prompt you to authenticate with your identity provider before establishing the connection from your terminal.
Browser-rendered terminal
End users can connect to the SSH server without any configuration by using Cloudflare’s browser-based terminal. When users visit the public hostname URL (for example, https://ssh.example.com
) and log in with their Access credentials, Cloudflare will render a terminal in their browser.
To enable, follow the instructions here.