A media production company needs to transfer large raw video files (averaging each) from its on-premises editing studio to Amazon S3. The file transfer process requires a secure, encrypted connection over the internet with a minimum throughput of to meet production deadlines. The solutions architect must also ensure that only the studio's public IP range () can initiate inbound network connections to the destination resources in the VPC. Which configuration should the solutions architect recommend to meet these requirements with the highest network performance?
- Establish an AWS Site-to-Site VPN connection to an AWS Transit Gateway with Equal-Cost Multi-Path (ECMP) routing enabled, using multiple VPN tunnels to distribute traffic. Configure stateful Security Groups on the destination resources to allow inbound traffic from the studio's IP range of .Answer
- BEstablish a single AWS Site-to-Site VPN connection directly to a Virtual Private Gateway in the VPC to support the transfer. Configure stateful Security Groups on the destination resources to allow inbound traffic from the studio's IP range of .
- CEstablish an AWS Site-to-Site VPN connection to an AWS Transit Gateway with Equal-Cost Multi-Path (ECMP) routing enabled. Configure a stateless Network Access Control List (NACL) on the destination subnet to allow inbound traffic from the studio's IP range of , relying on the stateless nature of the NACL to automatically permit all return traffic.
- DEstablish an AWS Site-to-Site VPN connection to an AWS Transit Gateway with Equal-Cost Multi-Path (ECMP) routing enabled. Use Amazon Route 53 latency routing to distribute file upload requests across the VPN tunnels to optimize performance and ensure failover, without configuring Route 53 health checks.
Answer
Establish an AWS Site-to-Site VPN connection to an AWS Transit Gateway with Equal-Cost Multi-Path (ECMP) routing enabled, using multiple VPN tunnels to distribute traffic. Configure stateful Security Groups on the destination resources to allow inbound traffic from the studio's IP range.
The correct answer correctly addresses both the throughput and filtering constraints. To exceed the limit of a single AWS Site-to-Site VPN tunnel, you must deploy the VPN over an AWS Transit Gateway and enable Equal-Cost Multi-Path (ECMP) routing. This configuration scales bandwidth by allowing active-active routing over multiple tunnels. Additionally, utilizing stateful Security Groups ensures that inbound traffic is restricted to the studio's IP range while automatically allowing outbound responses without manually opening ephemeral port ranges.
Step-by-Step Solution
Key Concept
Scalable Hybrid Connectivity and Network Filtering Statefulness
Estimated Time:2m 0s