Valid NSE7_PBC-6.4 Dumps shared by ExamDiscuss.com for Helping Passing NSE7_PBC-6.4 Exam! ExamDiscuss.com now offer the newest NSE7_PBC-6.4 exam dumps, the ExamDiscuss.com NSE7_PBC-6.4 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com NSE7_PBC-6.4 dumps with Test Engine here:
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.)
Correct Answer: A,B
Explanation https://github.com/fortinet/fortigate-autoscale-gcp/blob/main/network.tf session_affinity = "CLIENT_IP" 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}", ] } "