Topic 1 Question 93
You have deployed an HTTP(s) load balancer, but health checks to port 80 on the Compute Engine virtual machine instance are failing, and no traffic is sent to your instances. You want to resolve the problem. Which commands should you run?
gcloud compute instances add-access-config instance-1
gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --destination-ranges 130.211.0.0/22,35.191.0.0/16 --direction EGRESS
gcloud compute firewall-rules create allow-lb --network load-balancer --allow tcp --source-ranges 130.211.0.0/22,35.191.0.0/16 --direction INGRESS
gcloud compute health-checks update http health-check --unhealthy-threshold 10
ユーザの投票
コメント(4)
- 正解だと思う選択肢: C
100% sure for C.
Allow source range LB check: 130.211.0.0/22,35.191.0.0/16.
👍 5ccieman20162022/12/01 - 正解だと思う選択肢: C
c is right source: https://cloud.google.com/load-balancing/docs/health-checks
👍 4nosense2022/12/01 - 正解だと思う選択肢: C
c is right source: https://cloud.google.com/load-balancing/docs/health-checks
👍 2pfilourenco2022/12/03
シャッフルモード