A logistics company has migrated its inventory management systems to AWS, distributing the workload across VPCs in the us-west-2 Region. The company needs to establish private connectivity between these VPCs and its on-premises data center, which has an existing AWS Direct Connect connection. The database synchronization process requires a minimum, consistent throughput of . The solution must easily scale to accommodate up to VPCs in the future with minimal routing complexity and administrative overhead. Additionally, the network security policy mandates stateful traffic filtering at the instance level and stateless filtering at the subnet boundary. Which of the following network architectures meets these requirements?
- Attach the VPCs to an AWS Transit Gateway. Connect the Transit Gateway to a Direct Connect Gateway using a Transit Virtual Interface (Transit VIF) on the Direct Connect connection. Configure Security Groups to statefully inspect traffic at the instance level and Network ACLs to statelessly filter traffic at the subnet boundary.Answer
- BEstablish an AWS Site-to-Site VPN connection over the Direct Connect connection to an AWS Transit Gateway, and attach the VPCs to the Transit Gateway. Configure Network ACLs to statefully filter traffic at the instance level and Security Groups to statelessly filter traffic at the subnet boundary.
- CCreate a full mesh of VPC Peering connections between the VPCs. Create a Private Virtual Interface (Private VIF) on the Direct Connect connection to a central transit VPC to route traffic to the on-premises data center. Configure Route 53 latency routing policies to direct traffic between subnets.
- DProvision separate Private Virtual Interfaces (Private VIFs) on the Direct Connect connection, connecting each VIF directly to a Virtual Private Gateway (VGW) in each VPC. Configure Security Groups to statelessly filter traffic at the subnet boundary.
Answer
The correct network architecture is to attach all VPCs to an AWS Transit Gateway, connect it to a Direct Connect Gateway using a Transit Virtual Interface (Transit VIF), and use Security Groups for stateful instance-level security and Network ACLs for stateless subnet-level security.
The correct architecture uses AWS Transit Gateway to act as a centralized cloud router, which supports up to of throughput per VPC attachment and easily scales up to thousands of VPCs, meeting both the throughput and scalability requirements. Connecting the Transit Gateway to the Direct Connect connection requires a Direct Connect Gateway and a Transit Virtual Interface (Transit VIF). To satisfy the security requirements, Security Groups are configured at the instance level for stateful filtering, and Network ACLs are configured at the subnet level for stateless filtering.
Step-by-Step Solution
Key Concept
Scalable hybrid network design using AWS Transit Gateway, Direct Connect Gateway with Transit VIF, and stateful vs stateless traffic filtering.
Estimated Time:2m 30s