A financial services organization is establishing a secure hybrid network connection between its on-premises trading platform and a VPC in the AWS Cloud. The application requires a minimum encrypted throughput of to replicate time-sensitive market feeds. Additionally, the network engineering team must implement stateless traffic filtering at the subnet level to restrict inbound access. Which design will meet these requirements with the lowest administrative complexity?
- Establish multiple AWS Site-to-Site VPN connections to an AWS Transit Gateway, enabling Equal-Cost Multi-Path (ECMP) routing to aggregate the tunnel throughput. Set up Network Access Control Lists (NACLs) on the subnets to enforce stateless traffic filtering.Answer
- BDeploy a single AWS Site-to-Site VPN connection with two active tunnels configured in an active-active routing setup to the VPC Virtual Private Gateway (VGW). Set up Network Access Control Lists (NACLs) on the subnets to enforce stateless traffic filtering.
- CEstablish multiple AWS Site-to-Site VPN connections to an AWS Transit Gateway, enabling Equal-Cost Multi-Path (ECMP) routing to aggregate the tunnel throughput. Define security groups on the EC2 instances to enforce stateless inbound filtering at the subnet level.
- DEstablish a single AWS Site-to-Site VPN connection to a virtual private gateway. Configure Amazon Route 53 with latency-based routing and health checks to dynamically distribute the market data traffic across the tunnels.
Answer
Establish multiple AWS Site-to-Site VPN connections to an AWS Transit Gateway, enabling Equal-Cost Multi-Path (ECMP) routing to aggregate the tunnel throughput, and set up Network Access Control Lists (NACLs) on the subnets to enforce stateless traffic filtering.
The correct answer combines AWS Transit Gateway and Equal-Cost Multi-Path (ECMP) routing, which allows the dynamic distribution of traffic across multiple active Site-to-Site VPN connections. This bypasses the limit of a single VPN tunnel to meet the requirement. Using Network Access Control Lists (NACLs) correctly provides the required stateless filtering at the subnet boundaries.
Step-by-Step Solution
Key Concept
To scale VPN throughput beyond , you must use AWS Transit Gateway with Equal-Cost Multi-Path (ECMP) routing to distribute traffic across multiple Site-to-Site VPN tunnels. Stateless network filtering at the subnet level is achieved using Network Access Control Lists (NACLs).