Building a High-throughput VPN - GSP062

A passionate full-stack developer from @ePlus.DEV
Search for a command to run...

A passionate full-stack developer from @ePlus.DEV
No comments yet. Be the first to comment.
Quick and practical tips to help users optimize tasks, improve skills, and solve common problems effectively across various areas like tech, lifestyle, productivity, and more.
Challenge overview In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary OpenAI công bố mười kết quả mới cho các bài toán lâu năm trong toán h

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary OpenAI công bố mười kết quả mới cho các bài toán lâu năm trong toán h

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary GitHub thử nghiệm policy theo enterprise team, cho phép cấp thêm mode

Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary OpenAI giảm mạnh giá GPT-5.6 Luna và Terra, đồng thời chuyển Priority

This hands-on lab shows you how to create a secure, high-throughput VPN and test the speed.
Secure communication between Google Cloud and other clouds or on-premises systems is a common, critical need. Fortunately, Google Cloud makes it easy for you to create a secure Internet Protocol security (IPsec) virtual private networks (VPNs) to achieve this goal. If a single tunnel does not provide necessary throughput, Google Cloud can smoothly distribute traffic across multiple tunnels to provide additional bandwidth.
In this lab you do the following:
Create VPN
Create a Virtual Private Cloud (VPC) named cloud to simulate your Google Cloud network, and a VPC named on-prem (on-premises) to simulate an external network.
Create VPN gateways, forwarding rules, and addresses for the cloud VPC.
Form a tunnel for the new VPN, and route traffic through it.
Repeat the VPN creation process for the on-prem VPC, creating a second VPN.
Test VPNs
Create a virtual machine (VM) using Compute Engine for throughput load testing.
Test throughput speed of a single VPN using iperf.
To maximize your learning, you should:
Review and familiarize yourself with how to create a VPN using Google Cloud.
Review the VPC network overview guide.
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources are made available to you.
This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Note: Use an Incognito (recommended) or private browser window to run this lab. This prevents conflicts between your personal account and the student account, which may cause extra charges incurred to your personal account.
Note: Use only the student account for this lab. If you use a different Google Cloud account, you may incur charges to that account.
Click the Start Lab button. If you need to pay for the lab, a dialog opens for you to select your payment method. On the left is the Lab Details pane with the following:
The Open Google Cloud console button
Time remaining
The temporary credentials that you must use for this lab
Other information, if needed, to step through this lab
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account.
If necessary, copy the Username below and paste it into the Sign in dialog.
student-00-bdb3d15d4b6f@qwiklabs.net
Copied!
You can also find the Username in the Lab Details pane.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
KKJAjBnnt9Op
Copied!
You can also find the Password in the Lab Details pane.
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials.
Note: Using your own Google Cloud account for this lab may incur extra charges.
Click through the subsequent pages:
Accept the terms and conditions.
Do not add recovery options or two-factor authentication (because this is a temporary account).
Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Note: To access Google Cloud products and services, click the Navigation menu or type the service or product name in the Search field.
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
Click Activate Cloud Shell at the top of the Google Cloud console.
Click through the following windows:
Continue through the Cloud Shell information window.
Authorize Cloud Shell to use your credentials to make Google Cloud API calls.
When you are connected, you are already authenticated, and the project is set to your Project_ID, qwiklabs-gcp-03-748c9c908281. The output contains a line that declares the Project_ID for this session:
Your Cloud Platform project in this session is set to qwiklabs-gcp-03-748c9c908281
gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
gcloud auth list
Output:
ACTIVE: *
ACCOUNT: student-00-bdb3d15d4b6f@qwiklabs.net
To set the active account, run:
$ gcloud config set account `ACCOUNT`
gcloud config list project
Output:
[core]
project = qwiklabs-gcp-03-748c9c908281
Note: For full documentation of gcloud, in Google Cloud, refer to the gcloud CLI overview guide.
In this section, you:
Create a VPC to simulate your cloud production network.
Allow common types of traffic to flow through the VPC.
Create a subnet for deploying hosts.
cloud associated with your Google Cloud project by running the following:gcloud compute networks create cloud --subnet-mode custom
This VPC allows you to use non-default IP addressing, but does not include any default firewall rules.
SSH and icmp, because you'll need a secure shell to communicate with VMs during load testing:gcloud compute firewall-rules create cloud-fw --network cloud --allow tcp:22,tcp:5001,udp:5001,icmp
gcloud compute networks subnets create cloud-east --network cloud \
--range 10.0.1.0/24 --region us-east1
In this solution, you use 10.0.1.0/24 and the us-east1 region.
In this section you create a simulation of your on-prem VPC, or any network you want to connect to cloud. In practice you'd already have resources here, but for the purpose of creating tunnels and validating configurations, follow these steps:
on-prem by running:gcloud compute networks create on-prem --subnet-mode custom
SSH and icmp for hosts in the on-prem VPC, because you need a secure shell to communicate with VMs during load testing:gcloud compute firewall-rules create on-prem-fw --network on-prem --allow tcp:22,tcp:5001,udp:5001,icmp
gcloud compute networks subnets create on-prem-central \
--network on-prem --range 192.168.1.0/24 --region us-east4
Note: In this example, you assign 192.168.1.0/24 to the us-east4 region.
Create two custom VPCs with subnetworks and firewall rules.
Each environment requires VPN gateways for secure external communication. Follow these steps to create the initial gateways for your cloud and on-prem VPCs:
on-prem-gw1 in the on-prem VPC and us-east4 region:gcloud compute target-vpn-gateways create on-prem-gw1 --network on-prem --region us-east4
cloud-gw1 in the cloud VPC and us-east1 region:gcloud compute target-vpn-gateways create cloud-gw1 --network cloud --region us-east1
The VPN gateways each need a static, external IP address so that systems outside the VPC can communicate with them. Now you create IP addresses and routes on the cloud and on-prem VPCs.
cloud-gw1 VPN gateway:gcloud compute addresses create cloud-gw1 --region us-east1
on-prem-gw1 VPN gateway:gcloud compute addresses create on-prem-gw1 --region us-east4
First, for the cloud-gw1 gateway:
cloud_gw1_ip=$(gcloud compute addresses describe cloud-gw1 \
--region us-east1 --format='value(address)')
Second, for the on-prem-gw1 gateway:
on_prem_gw_ip=$(gcloud compute addresses describe on-prem-gw1 \
--region us-east4 --format='value(address)')
cloud VPC. You need to create forwarding rules in both directions.Forward the Encapsulating Security Payload (ESP) protocol from cloud-gw1:
gcloud compute forwarding-rules create cloud-1-fr-esp --ip-protocol ESP \
--address $cloud_gw1_ip --target-vpn-gateway cloud-gw1 --region us-east1
Forward UDP:500 traffic from cloud-gw1:
gcloud compute forwarding-rules create cloud-1-fr-udp500 --ip-protocol UDP \
--ports 500 --address $cloud_gw1_ip --target-vpn-gateway cloud-gw1 --region us-east1
Forward UDP:4500 traffic from cloud-gw1:
gcloud compute forwarding-rules create cloud-fr-1-udp4500 --ip-protocol UDP \
--ports 4500 --address $cloud_gw1_ip --target-vpn-gateway cloud-gw1 --region us-east1
on-prem VPC. This step allows the IPsec tunnel to exit your firewalls:Forward the ESP protocol from on-prem-gw1:
gcloud compute forwarding-rules create on-prem-fr-esp --ip-protocol ESP \
--address $on_prem_gw_ip --target-vpn-gateway on-prem-gw1 --region us-east4
Forward UDP:500 traffic, used in establishing the IPsec tunnel from on-prem-gw1:
gcloud compute forwarding-rules create on-prem-fr-udp500 --ip-protocol UDP --ports 500 \
--address $on_prem_gw_ip --target-vpn-gateway on-prem-gw1 --region us-east4
Forward UDP:4500 traffic, which carries the encrypted traffic from on-prem-gw1:
gcloud compute forwarding-rules create on-prem-fr-udp4500 --ip-protocol UDP --ports 4500 \
--address $on_prem_gw_ip --target-vpn-gateway on-prem-gw1 --region us-east4
Create two VPN gateways and necessary forwarding rules.
Ordinarily you would need to go generate a secret for the next step, where you create and validate the tunnels on-prem-tunnel1 and cloud-tunnel1. For details about how to create and securely store secrets, view the Secret Manager conceptual overview guide. For now just use the string "sharedsecret".
Create a tunnel for the local network on-prem-tunnel1, and for the cloud-based network cloud-tunnel1. Each network must have a VPN gateway, and the secrets must match. In the following two commands, where you would, in a production scenario, replace [MY_SECRET] with the secret you generated, replace it with "sharedsecret"
on-prem to cloud:gcloud compute vpn-tunnels create on-prem-tunnel1 --peer-address $cloud_gw1_ip \
--target-vpn-gateway on-prem-gw1 --ike-version 2 --local-traffic-selector 0.0.0.0/0 \
--remote-traffic-selector 0.0.0.0/0 --shared-secret=[MY_SECRET] --region us-east4
gcloud compute vpn-tunnels create cloud-tunnel1 --peer-address $on_prem_gw_ip \
--target-vpn-gateway cloud-gw1 --ike-version 2 --local-traffic-selector 0.0.0.0/0 \
--remote-traffic-selector 0.0.0.0/0 --shared-secret=[MY_SECRET] --region us-east1
Now that you've created the gateways and built the tunnels, you need to add routes from the subnets through the two tunnels.
on-prem VPC to the cloud 10.0.1.0/24 range into the tunnel:gcloud compute routes create on-prem-route1 --destination-range 10.0.1.0/24 \
--network on-prem --next-hop-vpn-tunnel on-prem-tunnel1 \
--next-hop-vpn-tunnel-region us-east4
cloud VPC to the on-prem 192.168.1.0/24 range into the tunnel:gcloud compute routes create cloud-route1 --destination-range 192.168.1.0/24 \
--network cloud --next-hop-vpn-tunnel cloud-tunnel1 --next-hop-vpn-tunnel-region us-east1
Create two VPN tunnels.
At this point, you've established a secure path between the on-prem and cloud VPCs. To test throughput use iperf, an open-source tool for network load testing. To test, you need a VM in each environment, one to send traffic and the other to receive it, and you'll create them next.
Now you create a virtual machine for the cloud VPC named is cloud-loadtest. This example uses a Debian Linux image for the OS.
Note: If you have an existing project, feel free to omit this step and use existing resources. Bandwidth for a VM is 2 Gbps * vCPUs, so you'll want a 4 vCPU minimum.
gcloud compute instances create "cloud-loadtest" --zone us-east1-d \
--machine-type "e2-standard-4" --subnet "cloud-east" \
--image-family "debian-11" --image-project "debian-cloud" --boot-disk-size "10" \
--boot-disk-type "pd-standard" --boot-disk-device-name "cloud-loadtest"
on-prem VPC named on-prem-loadtest. This example uses the same Debian image as in the cloud VPC. Omit this step if you have existing resources.Run the following:
gcloud compute instances create "on-prem-loadtest" --zone us-east4-c \
--machine-type "e2-standard-4" --subnet "on-prem-central" \
--image-family "debian-11" --image-project "debian-cloud" --boot-disk-size "10" \
--boot-disk-type "pd-standard" --boot-disk-device-name "on-prem-loadtest"
sudo apt-get install iperf
on-prem-loadtest VM, run this command:iperf -s -i 5
You have created an iperf server on the VM that reports its status every 5 seconds.
cloud-loadtest VM, run this command:iperf -c 192.168.1.2 -P 20 -x C
This creates an iperf client with twenty streams, which reports values after 10 seconds of testing.
Create two VMs and install iperf via ssh.
Note: This is not part of lab instructions.
You can delete the created VPN tunnels by following command:
gcloud compute vpn-tunnels delete [tunnel-name] --region [region]
Replace [tunnel-name] with name of the tunnel.
Replace [region] with the region which you specified while creating tunnel.
Make sure you installed iperf on both VMs.
In case of connection refused error, verify that:
Firewall rules for created networks (tcp:5001)
The server is running properly on on-prem-loadtest
You are trying to connect to the server via cloud-loadtest
In the Navigation menu go to the Networking section.
Click on Network Connectivity > VPN.
Click on the Cloud VPN Gateway to view the Cloud VPN Gateway details page.



curl -LO raw.githubusercontent.com/ePlus-DEV/storage/refs/heads/main/labs/GSP062/lab.sh
source lab.sh
Script Alternative
curl -LO https://raw.githubusercontent.com/Itsabhishek7py/GoogleCloudSkillsboost/refs/heads/main/Building%20a%20High%20throughput%20VPN/abhishek.sh
sudo chmod +x abhishek.sh
./abhishek.sh