This page describes how to use static routing to create a Classic VPN gateway and one tunnel. This tunnel is either a policy-based or route-based tunnel.
With route-based VPN, you specify only the remote traffic selector. If you need to specify a local traffic selector, create a Cloud VPN tunnel that uses policy-based routing instead.
Classic VPN does not support IPv6.
For more information about Cloud VPN, see the following resources:
For best practices to consider before setting up Cloud VPN, see Best practices.
For more information about Cloud VPN, see the Cloud VPN overview.
For definitions of terms used on this page, see Key terms.
Routing options
When you use the Google Cloud console to create a policy-based tunnel, Classic VPN performs the following tasks:
- Sets the tunnel's local traffic selector to the IP range that you specify.
- Sets the tunnel's remote traffic selector to the IP ranges that you specify in the Remote network IP ranges field.
- For each range in Remote network IP ranges, Google Cloud creates a custom static route whose destination (prefix) is the range's CIDR, and whose next hop is the tunnel.
After you create a policy-based Classic VPN tunnel, the IP ranges you entered in the Remote network IP ranges field appear as Advertised IP ranges on the VPN tunnel details page.
When you use the Google Cloud console to create a route-based tunnel, Classic VPN performs the following tasks:
- Sets the tunnel's local and remote traffic selectors to any IP address
(
0.0.0.0/0
). - For each range in Remote network IP ranges, Google Cloud creates a custom static route whose destination (prefix) is the range's CIDR and whose next hop is the tunnel.
When you use the Google Cloud CLI to create either a policy-based tunnel or a route-based tunnel, traffic selectors for the tunnel are defined in the same way. However, because the creation of custom static routes is done with separate commands, you have more control over those routes.
The number of CIDRs that you can specify in a traffic selector depends on the IKE version.
For important background information, see the following:
Before you begin
Set up the following items in Google Cloud to make it easier to configure Cloud VPN:
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
If you are using the Google Cloud CLI, set your project ID with the following command. The
gcloud
instructions on this page assume that you have set your project ID before issuing commands.gcloud config set project PROJECT_ID
-
You can also view a project ID that has already been set by running the following command:
gcloud config list --format='text(core.project)'
Create a custom VPC network and subnet
Before creating a Classic VPN gateway and tunnel, create a Virtual Private Cloud (VPC) network and at least one subnet in the region where the Classic VPN gateway resides:
- To create a custom mode VPC network (recommended), see Create a custom mode VPC network.
- To create subnets, see Working with subnets.
Create a gateway and tunnel
Console
Configure the gateway
In the Google Cloud console, go to the VPN page.
If you are creating a gateway for the first time, click Create VPN connection.
Select the VPN setup wizard.
Select the Classic VPN option button.
Click Continue.
On the Create a VPN connection page, specify the following gateway settings:
- Name: The name of the VPN gateway. The name cannot be changed later.
- Description: Optionally, add a description.
- Network: Specify an existing VPC network in which to create the VPN gateway and tunnel.
- Region: Cloud VPN gateways and tunnels are regional objects. Choose a Google Cloud region where the gateway will be located. Instances and other resources in different regions can use the tunnel for egress traffic subject to the order of routes. For best performance, locate the gateway and tunnel in the same region as relevant Google Cloud resources.
- IP address: Create or choose an existing regional external IP address.
Configure tunnels
For the new tunnel, in the Tunnels section, specify the following settings:
- Name: The name of the VPN tunnel. The name cannot be changed later.
- Description: Optionally, type a description.
- Remote peer IP address: Specify the external IP address of the peer VPN gateway.
- IKE version: Choose the appropriate IKE version supported by the peer VPN gateway. IKEv2 is preferred if it's supported by the peer device.
- IKE pre-shared key: Provide a pre-shared key (shared secret) used for authentication. The pre-shared key for the Cloud VPN tunnel must match the one used when you configure the counterpart tunnel on the peer VPN gateway. To generate a cryptographically strong pre-shared key, follow these directions.
For policy-based tunnels
- Under Routing options, select Policy-based.
Under Remote network IP ranges, provide a space-separated list of the IP ranges used by the peer network. This is the remote traffic selector, or the right side from the perspective of Cloud VPN.
After you create a policy-based Classic VPN tunnel, the IP ranges you entered in the Remote network IP ranges field appear as Advertised IP ranges on the VPN tunnel details page.
Under Local IP ranges, select one of the following methods:
- To choose an existing local IP range, use the Local subnetworks menu.
- To enter a list of space-separated IP ranges used in your VPC network, use the Local IP ranges field. For important considerations, see Policy-based tunnels and traffic selectors.
For route-based tunnels
- Under Routing options, select Route-based.
- Under Remote network IP ranges, provide a space-separated list of the IP ranges used by the peer network. These ranges are used to create custom static routes whose next hop is this VPN tunnel.
If you need to create more tunnels on the same gateway, click Add tunnel and repeat the previous step. You can also add more tunnels later.
Click Create.
gcloud
To create a Cloud VPN gateway, complete the following command sequence. In the commands, replace the following:
PROJECT_ID
: the ID of your projectNETWORK
: the name of your Google Cloud networkREGION
: the Google Cloud region where you create the gateway and tunnelGW_NAME
: the name of the gatewayGW_IP_NAME
: a name for the external IP address used by the gateway- Optional: The
--target-vpn-gateway-region
is the region of the Classic VPN gateway to operate on. Its value should be the same as--region
. If not specified, this option is automatically set. This option overrides the default compute/region property value for this command invocation.
Configure the gateway resources
Create the target VPN gateway object:
gcloud compute target-vpn-gateways create GW_NAME \ --network=NETWORK \ --region=REGION \ --project=PROJECT_ID
Reserve a regional external (static) IP address:
gcloud compute addresses create GW_IP_NAME \ --region=REGION \ --project=PROJECT_ID
Note the IP address (so you can use it when you configure your peer VPN gateway):
gcloud compute addresses describe GW_IP_NAME \ --region=REGION \ --project=PROJECT_ID \ --format='flattened(address)'
Create three forwarding rules; these rules instruct Google Cloud to send ESP (IPsec), UDP 500, and UDP 4500 traffic to the gateway:
gcloud compute forwarding-rules create fr-GW_NAME-esp \ --load-balancing-scheme=EXTERNAL \ --network-tier=PREMIUM \ --ip-protocol=ESP \ --address=GW_IP_NAME \ --target-vpn-gateway=GW_NAME \ --region=REGION \ --project=PROJECT_ID
gcloud compute forwarding-rules create fr-GW_NAME-udp500 \ --load-balancing-scheme=EXTERNAL \ --network-tier=PREMIUM \ --ip-protocol=UDP \ --ports=500 \ --address=GW_IP_NAME \ --target-vpn-gateway=GW_NAME \ --region=REGION \ --project=PROJECT_ID
gcloud compute forwarding-rules create fr-GW_NAME-udp4500 \ --load-balancing-scheme=EXTERNAL \ --network-tier=PREMIUM \ --ip-protocol=UDP \ --ports=4500 \ --address=GW_IP_NAME \ --target-vpn-gateway=GW_NAME \ --region=REGION \ --project=PROJECT_ID
Create the Cloud VPN tunnel
In the commands, replace the following:
TUNNEL_NAME
: a name for the tunnelON_PREM_IP
: the external IP address of the peer VPN gatewayIKE_VERS
:1
for IKEv1 or2
for IKEv2SHARED_SECRET
: your pre-shared key (shared secret). The pre-shared key for the Cloud VPN tunnel must match the one used when you configure the counterpart tunnel on the peer VPN gateway. To generate a cryptographically strong pre-shared key, follow these directions.
For policy-based VPN:
LOCAL_IP_RANGES
: a comma-delimited list of the Google Cloud IP ranges. For example, you can supply the CIDR block for each subnet in a VPC network. This is the left side from the perspective of Cloud VPN.REMOTE_IP_RANGES
: a comma-delimited list of the peer network IP ranges. This is the right side from the perspective of Cloud VPN.
To configure a policy-based VPN tunnel, run the following command:
gcloud compute vpn-tunnels create TUNNEL_NAME \ --peer-address=ON_PREM_IP \ --ike-version=IKE_VERS \ --shared-secret=SHARED_SECRET \ --local-traffic-selector=LOCAL_IP_RANGES \ --remote-traffic-selector=REMOTE_IP_RANGES \ --target-vpn-gateway=GW_NAME \ --region=REGION \ --project=PROJECT_ID
For route-based VPN, both the local and remote traffic selectors are
0.0.0.0/0
as defined in routing options and traffic selectors.To configure a route-based VPN tunnel, run the following command:
gcloud compute vpn-tunnels create TUNNEL_NAME \ --peer-address=ON_PREM_IP \ --ike-version=IKE_VERS \ --shared-secret=SHARED_SECRET \ --local-traffic-selector=0.0.0.0/0 \ --remote-traffic-selector=0.0.0.0/0 \ --target-vpn-gateway=GW_NAME \ --region=REGION \ --project=PROJECT_ID
Create a static route for each remote IP range that you specified in the
--remote-traffic-selector
option in the previous step. Repeat this command for each remote IP range. ReplaceROUTE_NAME
with a unique name for the route, and replaceREMOTE_IP_RANGE
with the appropriate remote IP range.gcloud compute routes create ROUTE_NAME \ --destination-range=REMOTE_IP_RANGE \ --next-hop-vpn-tunnel=TUNNEL_NAME \ --network=NETWORK \ --next-hop-vpn-tunnel-region=REGION \ --project=PROJECT_ID
Complete the configuration
Before you can use a new Cloud VPN gateway and its associated VPN tunnel, complete the following steps:
- Set up the peer VPN gateway and configure the corresponding tunnel
there. For instructions, see the following:
- For specific configuration guidance for certain peer VPN devices, see Use third-party VPNs.
- For general configuration parameters, see Configure the peer VPN gateway.
- Configure firewall rules in Google Cloud and your peer network as required.
- Check the status of your VPN tunnel and forwarding rules.
View your VPN routes by going to the project routing table and filtering for
Next hop type:VPN tunnel
:
What's next
- To control which IP addresses are allowed for peer VPN gateways, see Restrict IP addresses for peer VPN gateways.
- To use high-availability and high-throughput scenarios or multiple subnet scenarios, see Advanced configurations.
- To help you solve common issues that you might encounter when using Cloud VPN, see Troubleshooting.