Refer to the exhibit. The exhibit shows a topology where multiple connections from clients to the same FortiGate-VM instance, regardless of the protocol being used, are required. Which two statements are correct? (Choose two.)
A.
The design shows an active-active FortiGate-VM architecture.
B.
The Cloud Load Balancer Session Affinity setting should be changed to CLIENT_IP.
C.
The design shows an active-passive FortiGate-VM architecture.
D.
The Cloud Load Balancer Session Affinity setting should use the default value.
A - we using A-A architecture with GCP NLB
B to ensure that the same client always reach the same machine regardless the protocol we must configure a session affinity that route the same source IP to the same instance
as we can see in the TF deployment file
https://github.com/fortinet/fortigate-autoscale-gcp/blob/main/network.tf
"### Target Pools ###
resource "google_compute_target_pool" "default" {
name = "${var.cluster_name}-instancepool-${random_string.random_name_post.result}"
session_affinity = "CLIENT_IP"
health_checks = [
"${google_compute_http_health_check.default.name}",
]
}
"
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
charruco
2 years, 4 months agomordechayd
2 years, 8 months agokinge2
2 years, 9 months agokinge2
2 years, 9 months ago