A media company needs to securely back up large video archives from its on-premises data center to Amazon S3. The daily backup transfers require a secure, encrypted connection over the internet with a minimum throughput of . Which network architecture should a solutions architect design to meet these throughput and security requirements?
- ADeploy a single AWS Site-to-Site VPN connection to a virtual private gateway (VGW), and configure stateful Network Access Control Lists (NACLs) to bypass the default tunnel bandwidth limits.
- BSet up a single AWS Site-to-Site VPN connection to an Amazon VPC virtual private gateway, and configure dynamic BGP routing to allow the tunnel to auto-scale up to .
- Establish multiple AWS Site-to-Site VPN connections terminated on an AWS Transit Gateway, and enable Equal-Cost Multi-Path (ECMP) routing to aggregate the bandwidth of the VPN tunnels.Answer
- DImplement Amazon Route 53 latency-based routing to distribute the backup data streams across multiple virtual private gateways in different AWS Regions to bypass the VPN tunnel limit.
Answer
Establish multiple AWS Site-to-Site VPN connections terminated on an AWS Transit Gateway, and enable Equal-Cost Multi-Path (ECMP) routing to aggregate the bandwidth of the VPN tunnels.
AWS Site-to-Site VPN connections have a maximum throughput of per tunnel. To achieve a throughput higher than this limit (such as the required ) over encrypted VPN connections, a solutions architect must terminate the VPN connections on an AWS Transit Gateway. By enabling Equal-Cost Multi-Path (ECMP) routing on the Transit Gateway, traffic is distributed across multiple VPN paths, effectively aggregating their bandwidth to meet the demand.
Step-by-Step Solution
Key Concept
AWS Site-to-Site VPN throughput limits can be exceeded by terminating multiple VPN connections on an AWS Transit Gateway and enabling Equal-Cost Multi-Path (ECMP) routing.