Thursday, April 4, 2024
Cloud Armor GCP Juara GCP Load Balancer

HTTP Load Balancer with Cloud Armor

http

“HTTP Load Balancer with Cloud Armor”

Pengantar

Load balancing HTTP(S) Google Cloud diterapkan di edge jaringan Google di titik kehadiran (POP) Google di seluruh dunia. Lalu lintas pengguna yang diarahkan ke load balancer HTTP(S) memasuki POP yang paling dekat dengan pengguna dan kemudian diseimbangkan bebannya melalui jaringan global Google ke backend terdekat yang memiliki kapasitas memadai.

Daftar yang diizinkan/ditolak IP Cloud Armor memungkinkan Anda untuk membatasi atau mengizinkan akses ke load balancer HTTP(S) di tepi Google Cloud, sedekat mungkin dengan pengguna dan lalu lintas berbahaya. Hal ini mencegah pengguna atau lalu lintas jahat menggunakan sumber daya atau memasuki jaringan virtual private cloud (VPC) Anda.

Praktikum

Task 1. Configure HTTP and health check firewall rules

Create the HTTP firewall rule

  • In the Cloud Console, navigate to Navigation menu (Navigation menu icon) > VPC network > Firewall.
  • Notice the existing ICMP, internal, RDP, and SSH firewall rules.
  • Each Google Cloud project starts with the default network and these firewall rules.
  • Click Create Firewall Rule.
  • Set the following values, leave all other values at their defaults:
  • Click Create.

Create the health check firewall rules

  • Still in the Firewall page, click Create Firewall Rule.
  • Set the following values, leave all other values at their defaults:
  • Click Create.

Task 2. Configure instance templates and create instance groups

Configure the instance templates

  • In the Cloud Console, navigate to Navigation menu (Navigation menu icon) > Compute Engine > Instance templates, and then click Create instance template.
  • For Name, type -template.
  • For Series, select E2.
  • For Machine Type, select e2-micro.
  • Click Advanced Options.
  • Click the Management tab.
  • Under Metadata, click + ADD ITEM and specify the following:
Baca Juga :  Cloud IAM: Qwik Start
  • Click Networking.
  • Set the following values and leave all other values at their defaults:
  • Click Create.
  • Wait for the instance template to be created.

Now create another instance template for subnet-b by copying

  • Click on -template and then click on the +CREATE SIMILAR option from the top.
  • For Name, type europe-west1-template.
  • Click Advanced Options.
  • Click Networking.
  • Ensure http-server is added as a network tag.
  • For Subnetwork, select default (europe-west1).
  • Click Done.
  • Click Create.

Create the managed instance groups

  • Still in Compute Engine, click Instance groups in the left menu.
  • Click Create instance group.
  • Set the following values, leave all other values at their defaults:
  • Click Create.

Now repeat the same procedure for create a second instance group for europe-west1-mig in europe-west1:

  • Click Create Instance group.
  • Set the following values, leave all other values at their defaults:
  • Click Create.

Task 3. Configure the HTTP Load Balancer

Configure the HTTP Load Balancer to balance traffic between the two backends (us-east1-mig in us-east1 and europe-west1-mig in europe-west1), as illustrated in the network diagram:

Start the configuration

  • In the Cloud Console, click Navigation menu (Navigation menu icon) > click Network Services > Load balancing, and then click Create load balancer.
  • Under HTTP(S) Load Balancing, click on Start configuration.
  • Select From Internet to my VMs or serverless services, and click Continue.
  • Set the Name to http-lb.

Configure the backend

Backend services direct incoming traffic to one or more attached backends. Each backend is composed of an instance group and additional serving capacity metadata.

  • Click on Backend configuration.
  • For Backend services & backend buckets, click Create a backend service.
  • Set the following values, leave all other values at their defaults:

This configuration means that the load balancer attempts to keep each instance of us-east1-mig at or below 50 requests per second (RPS).

  • Click Done.
  • Click Add backend.
  • Set the following values, leave all other values at their defaults:

This configuration means that the load balancer attempts to keep each instance of europe-west1-mig at or below 80% CPU utilization.

  • Click Done.
  • For Health Check, select Create a health check.
  • Set the following values, leave all other values at their defaults:
  • Click Save.
  • Check the Enable Logging box.
  • Set the Sample Rate to 1.
  • Click Create to create the backend service.

Configure the frontend

  • Click on Frontend configuration.
  • Specify the following, leaving all other values at their defaults:
  • Click Done.
  • Click Add Frontend IP and port.
  • Specify the following, leaving all other values at their defaults:
  • Click Done.

Review and create the HTTP Load Balancer

  • Click on Review and finalize.
  • Review the Backend services and Frontend.
  • Click on Create.
  • Wait for the load balancer to be created.
  • Click on the name of the load balancer (http-lb).
  • Note the IPv4 and IPv6 addresses of the load balancer for the next task. They will be referred to as [LB_IP_v4] and [LB_IP_v6], respectively.

Task 4. Test the HTTP Load Balancer

Access the HTTP Load Balancer

To test IPv4 access to the HTTP Load Balancer, open a new tab in your browser and navigate to http://[LB_IP_v4]. Make sure to replace [LB_IP_v4] with the IPv4 address of the load balancer.

If you have a local IPv6 address, try the IPv6 address of the HTTP Load Balancer by navigating to http://[LB_IP_v6]. Make sure to replace [LB_IP_v6] with the IPv6 address of the load balancer.

Stress test the HTTP Load Balancer

  • In the Console, navigate to Navigation menu (Navigation menu icon) > Compute Engine > VM instances.
  • Click Create instance.
  • Set the following values, leave all other values at their defaults:
Baca Juga :  Install Google Cloud SDK pada Linux Mint 20 | Ubuntu 20.04
  • Click Create.
  • Wait for the siege-vm instance to be created.
  • For siege-vm, click SSH to launch a terminal and connect.
  • Run the following command, to install siege:
sudo apt-get -y install siege
  • To store the IPv4 address of the HTTP Load Balancer in an environment variable, run the following command, replacing [LB_IP_v4] with the IPv4 address:
export LB_IP=[LB_IP_v4]
siege -c 150 -t120s http://$LB_IP
  • In the Cloud Console, on the Navigation menu (Navigation menu icon), click Network Services > Load balancing.
  • Click Backends.
  • Click http-backend.
  • Navigate to http-lb.
  • Click on the Monitoring tab.
  • Monitor the Frontend Location (Total inbound traffic) between North America and the two backends for 2 to 3 minutes.
  • Return to the SSH terminal of siege-vm.
  • Press CTRL+C to stop siege if it’s still running.

Task 5. Denylist the siege-vm

Create the security policy

  • In the console, navigate to Navigation menu (Navigatio menu icon) > Compute Engine > VM instances.
  • Note the External IP of the siege-vm. This will be referred to as [SIEGE_IP].
  • In the Cloud console, navigate to Navigation menu > Network Security > Cloud Armor.
  • Click Create policy.
  • Set the following values, leave all other values at their defaults:
  • Click Next step.
  • Click Add rule.
  • Set the following values, leave all other values at their defaults:
  • Click Done.
  • Click Next step.
  • Click Add Target.
  • For Type, select Load balancer backend service.
  • For Target, select http-backend.
  • Click Create policy.
  • Wait for the policy to be created before moving to the next step.

Penutup

Sahabat Blog Learning & Doing demikianlah penjelasan mengenai HTTP Load Balancer with Cloud Armor. Semoga Bermanfaat . Sampai ketemu lagi di postingan berikut nya.

(Visited 108 times, 1 visits today)

Similar Posts