Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam Professional Cloud Security Engineer topic 1 question 28 discussion

Actual exam question from Google's Professional Cloud Security Engineer
Question #: 28
Topic #: 1
[All Professional Cloud Security Engineer Questions]

A company has redundant mail servers in different Google Cloud Platform regions and wants to route customers to the nearest mail server based on location.
How should the company accomplish this?

  • A. Configure TCP Proxy Load Balancing as a global load balancing service listening on port 995.
  • B. Create a Network Load Balancer to listen on TCP port 995 with a forwarding rule to forward traffic based on location.
  • C. Use Cross-Region Load Balancing with an HTTP(S) load balancer to route traffic to the nearest region.
  • D. Use Cloud CDN to route the mail traffic to the closest origin mail server based on client IP address.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ESP_SAP
Highly Voted 3 years, 5 months ago
Corrrect Answer is (A): TCP Proxy Load Balancing is implemented on GFEs that are distributed globally. If you choose the Premium Tier of Network Service Tiers, a TCP proxy load balancer is global. In Premium Tier, you can deploy backends in multiple regions, and the load balancer automatically directs user traffic to the closest region that has capacity. If you choose the Standard Tier, a TCP proxy load balancer can only direct traffic among backends in a single region. https://cloud.google.com/load-balancing/docs/load-balancing-overview#tcp-proxy-load-balancing
upvoted 23 times
...
Warren2020
Highly Voted 3 years, 10 months ago
A is the correct answer. D is not correct. CDN works with HTTP(s) traffic and requires caching, which is not a valid feature used for mail server
upvoted 9 times
...
shanwford
Most Recent 3 weeks, 1 day ago
Selected Answer: A
I go for (A) because Network Load Balancers are Layer 4 regional, passthrough load balancers: so it didnt work as global LB ("different GCP regions")
upvoted 1 times
...
eeghai7thioyaiR4
3 weeks, 1 day ago
This is probably an old question 2-3 years ago, GCP introduces a "proxy network load balancer" So, in 2024, we have: - application load balancer, global, external-only, multi-region backends, only for HTTP and HTTPS, do not preserve clients' IP - "legacy" network load balancer (aka "passthrough"), external or internal, single-region, tcp or udp, preserve clients' IP - "new" network load balancer (aka "proxy"), global, external or internal, multi-region backends, tcp or udp, do not preserve clients' IP Here, we want: - global - external - multi-region - non-http => proxy network load balancer is the solution This maps to A (generic answer) or B (but only in proxy mode: passthrough won't work)
upvoted 1 times
eeghai7thioyaiR4
1 week, 6 days ago
On the other hand, B says "with forwarding rule". So this implies passthrough mode This left only A as a solution
upvoted 1 times
...
...
Roro_Brother
3 weeks, 6 days ago
Selected Answer: B
The company can achieve location-based routing of customers to the nearest mail server in Google Cloud Platform (GCP) using a Network Load Balancer (NLB)
upvoted 1 times
...
dija123
2 months, 2 weeks ago
Selected Answer: B
The company can achieve location-based routing of customers to the nearest mail server in Google Cloud Platform (GCP) using a Network Load Balancer (NLB)
upvoted 2 times
...
okhascorpio
3 months ago
There is no direct SMTP support in TCP proxy load balancer, hens it cannot be A. Google Cloud best practices recommend Network Load Balancing (NLB) for Layer 4 protocols like SMTP.
upvoted 3 times
...
ErenYeager
3 months, 1 week ago
Selected Answer: B
B) Create a Network Load Balancer to listen on TCP port 995 with a forwarding rule to forward traffic based on location. Explanation: Port 995 implies this is SSL/TLS encrypted mail traffic (IMAP). Network Load Balancing allows creating forwarding rules to route traffic based on IP location. This can send users to the closest backend mail server. TCP Proxy LB does not allow location-based routing. HTTP(S) LB is for HTTP only, not generic TCP traffic. Cloud CDN works at the HTTP level so cannot route TCP mail traffic. So a Network Load Balancer with IP based forwarding rules provides the capability to direct mail users to the closest regional mail server based on their location, meeting the requirement.
upvoted 3 times
...
[Removed]
10 months ago
Selected Answer: A
"A" is the most suitable answer. Mail servers use SMTP which run on TCP. This excludes C, D which are HTTPs based. Option B is not global which excludes it as well. The following page elaborates on global external proxy load balancing under the premium tier which meets the needs for this question and aligns with option A https://cloud.google.com/load-balancing/docs/tcp#identify_the_mode
upvoted 4 times
...
gcpengineer
11 months, 4 weeks ago
Selected Answer: A
https://cloud.google.com/load-balancing/docs/tcp
upvoted 2 times
...
gcpengineer
12 months ago
Selected Answer: B
B is the ans
upvoted 2 times
gcpengineer
11 months, 4 weeks ago
A is the ans. https://cloud.google.com/load-balancing/docs/tcp
upvoted 2 times
...
...
aashissh
1 year, 1 month ago
Selected Answer: B
The correct answer is B. To route customers to the nearest mail server based on location, the company can create a Network Load Balancer. The Network Load Balancer can listen on a specific TCP port (e.g., port 995 for mail traffic) and use a forwarding rule to forward traffic to the nearest mail server based on the client's location. This can be achieved by using a combination of the Load Balancing service and the Geo Map feature to route traffic based on the client's IP address. TCP Proxy Load Balancing (A) is not suitable for this scenario as it is designed for non-HTTP(S) traffic, and it does not use client location information for traffic routing. Cross-Region Load Balancing (C) is also not suitable as it is designed for HTTP(S) traffic and does not use client location information for traffic routing. Cloud CDN (D) is designed for caching content and delivering it from the nearest point of presence (POP) to the user, but it does not route traffic to different servers based on the client's location.
upvoted 4 times
gcpengineer
12 months ago
TCP proxy LB is relevant in this case
upvoted 2 times
...
...
mahi9
1 year, 2 months ago
Selected Answer: A
TCP Proxy Load Balancing is implemented on GFEs that are distributed globally. If you choose the Premium Tier of Network Service Tiers, a TCP proxy load balancer is global. In Premium Tier, you can deploy backends in multiple regions, and the load balancer automatically directs user traffic to the closest region that has capacity. If you choose the Standard Tier, a TCP proxy load balancer can only direct traffic among backends in a single region.
upvoted 1 times
...
Meyucho
1 year, 6 months ago
Selected Answer: A
At a glance, A seems wrong because it's a proxy solution and the question ask to route the traffic. But, in Premium Tier its possible to have a global forwarding rule and the backends in any region so it's the only solution for this. the other options are HTTP or Regional so they are wrong
upvoted 1 times
...
huntergame
1 year, 6 months ago
Selected Answer: A
A is correct answer
upvoted 1 times
...
AwesomeGCP
1 year, 7 months ago
Selected Answer: A
Corrrect Answer is (A): TCP Proxy Load Balancing is implemented on GFEs that are distributed globally. If you choose the Premium Tier of Network Service Tiers, a TCP proxy load balancer is global. In Premium Tier, you can deploy backends in multiple regions, and the load balancer automatically directs user traffic to the closest region that has capacity. If you choose the Standard Tier, a TCP proxy load balancer can only direct traffic among backends in a single region. https://cloud.google.com/load-balancing/docs/load-balancing-overview#tcp-proxy-load-balancing
upvoted 1 times
...
AWSE
3 years, 3 months ago
Ans should be A. TCP Proxy Load Balancing is intended for TCP traffic on specific well-known ports, such as port 25 for Simple Mail Transfer Protocol (SMTP).
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
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.

SaveCancel
Loading ...