Get started
Login
© 2024

Access Google Compute Engine VMs privately using Tailscale

Google Cloud provides Linux virtual machines, to which Tailscale can be used to provide secure connectivity.

Prerequisites

Before you begin this guide, you'll need a Tailscale network (known as a tailnet) set up and configured with at least one existing device. Read our getting started guide if you need help with this.

Step 1: Set up the Tailscale client for the VM

First, create a Virtual Machine in the GCE Console.

When creating the instance click on Management, security, disks, networking, sole tenancy, select Networking, and click on the Network Interface. Because we're later going to enable subnet routing on this VM, we want to turn IP Forwarding to On.

Enable IP Forwarding for the Network Interface

Once the VM has been created, ssh to the system and follow the steps to install Tailscale on Linux.

Step 2: Allow UDP port 41641

If at least one side of a tunnel has "easy NAT," where Tailscale can determine the UDP port number on the far side of the NAT device, then it will make direct connections to minimize latency. We ensure that GCE nodes can make direct connections by allowing UDP port 41641 to ingress through the firewall.

In VPC Network > Firewall we add two rules:

  1. An ingress rule to allow 0.0.0.0/0 for UDP port 41641 to all instances.
  2. An ingress rule to allow ::/0 for UDP port 41641 to all instances.
Allow ports 41641

Step 3: Advertise routes from the VM

For the benefit of the other nodes in the tailnet we'll set up split DNS to allow use of the same DNS names as are used inside of GCE. The hostnames inside of GCE are of the form vm-name.gce-project-name.internal

We'll have the VM advertise routes for the subnet it sits on. For example, if the subnet address range is 10.182.0.0/24, the command would be:

tailscale up --advertise-routes=10.182.0.0/24 --accept-dns=false

For GCE VMs it is generally best to let Google handle the DNS configuration, not have Tailscale override it, so we added --accept-dns=false.

Step 4: Add GCE DNS for your tailnet

Use the Google Cloud CLI command gcloud dns policies create to create a new Cloud DNS policy that allows inbound forwarding for your tailnet:

gcloud dns policies create inbound-dns \
  --project="YOUR_VPC_PROJECT" \
  --description="Expose DNS endpoints per subnet" \
  --networks="YOUR_VPC" \
  --enable-inbound-forwarding

where:

  • YOUR_VPC_PROJECT is your Google Cloud project ID.
  • YOUR_VPC is the comma separated list of network names to associate with the policy.

Use the gcloud compute addresses list to verify that your tailnet recognizes the DNS resolver for your tailnet subnet:

gcloud compute addresses list \
  --project="YOUR_VPC_PROJECT" \
  --filter='purpose="DNS_RESOLVER"' \
  --format='csv(address, region, subnetwork)' \
  | grep YOUR_TAILNET_SUBNET

where:

  • YOUR_VPC_PROJECT is your Google Cloud project ID.
  • YOUR_TAILNET_SUBNET is your subnet machine name.

Use the IP address returned from this command as a DNS resolver for your tailnet:

  1. Open the DNS page in the admin console.

  2. Click Add name server.

  3. Click Custom.

  4. For Nameserver, enter the IP address from the gcloud compute addresses list command that you ran above. In this example, we use 10.243.117.59.

  5. Ensure Restrict to search domain is checked.

  6. For Search Domain, enter internal.

  7. Click Save.

    Add nameserver.

Now the same hostnames which work between nodes running within GCE will also be available to all nodes on your tailnet.

Step 5: Remove public SSH access

As we can now ssh to the system over the private Tailscale network, there is no reason to leave the SSH port open on a public IP address. The default-allow-ssh rule can be deleted from VPC network > Firewall.

Disable public SSH port.