Check Point: Next-Gen Data Center Security CloudGuard for Google Cloud

i could not complete this lab can anyone suggest me how to dohapy.png

0 6 542
6 REPLIES 6

same here

Instead of searching for "Check Point CloudGuard IaaS Firewall & Threat Prevention" on the GCP marketplace, use the one with the words "NGFW" in it. It's the same thing. Use the PYAG one.

Yeah

 The problem is solved now, you can do the lab now, 
In order to complete the lab you need to run these 4 codes -
1

 

 

gcloud compute networks create vpc-cluster --bgp-routing-mode=regional --subnet-mode=custom
gcloud compute networks subnets create cluster --network=vpc-cluster --range=192.168.110.0/24 --region=us-central1 --enable-private-ip-google-access
gcloud compute networks create vpc-management --bgp-routing-mode=regional --subnet-mode=custom
gcloud compute networks subnets create management --network=vpc-management --range=192.168.120.0/24 --region=us-central1 --enable-private-ip-google-access
gcloud compute networks create vpc-prod --bgp-routing-mode=regional --subnet-mode=custom
gcloud compute networks subnets create prod --network=vpc-prod --range=10.0.0.0/24 --region=us-central1
gcloud compute networks create vpc-qa --bgp-routing-mode=regional --subnet-mode=custom
gcloud compute networks subnets create qa --network=vpc-qa --range=10.0.1.0/24 --region=us-central1
gcloud compute firewall-rules create ingress-qa --action allow --direction=INGRESS --source-ranges=0.0.0.0/0 --network=vpc-qa --rules all
gcloud compute firewall-rules create ingress-prod --action allow --direction=INGRESS --source-ranges=0.0.0.0/0 --network=vpc-prod --rules all
gcloud compute firewall-rules create rdp-management --action allow --direction=INGRESS --source-ranges=0.0.0.0/0 --network=vpc-management --rules tcp:3389

 

 

 2

 

 

gcloud compute instances create rdp-client --zone=us-central1-a  --machine-type=n1-standard-4 --image-project=qwiklabs-resources --image=sap-rdp-image --network=vpc-management --subnet=management --tags=rdp,http-server,https-server --boot-disk-type=pd-ssd

 

 

3

 

 

gcloud compute instances create linux-qa --zone us-central1-a --image-project=debian-cloud --image=debian-9-stretch-v20191210 --custom-cpu 1 --custom-memory 4 --network-interface subnet=qa,private-network-ip=10.0.1.4,no-address --metadata startup-script="\#! /bin/bash
useradd -m -p sa1trmaMoZ25A cp
EOF"

 

 

4

 

 

gcloud compute instances create linux-prod --zone us-central1-a --image-project=debian-cloud --image=debian-9-stretch-v20191210 --custom-cpu 1 --custom-memory 4 --network-interface subnet=prod,private-network-ip=10.0.0.4,no-address --metadata startup-script="\#! /bin/bash
useradd -m -p sa1trmaMoZ25A cp
EOF"

 

 

and now do the check my progress, you'll get green tick .

Don't worry team is aware of this issue they will do as per requirement 

Top Labels in this Space