An automotive manufacturer is establishing a hybrid network to connect its on-premises assembly plant's industrial control systems to a multi-account AWS environment consisting of spoke VPCs in the `us-east-1` region under an AWS Organization. The network architecture requires: (1) High-speed, low-latency primary connectivity using a AWS Direct Connect (DX) connection terminating at a Direct Connect Gateway (DXGW). (2) An IPsec Site-to-Site VPN connection terminating on an AWS Transit Gateway (TGW) to serve as a passive backup. (3) Transitive routing between all spoke VPCs and the on-premises network. (4) Minimal administrative overhead for routing table updates. (5) Symmetrical routing where the DX path is strictly preferred for both inbound and outbound traffic, and the VPN is only utilized during a DX outage. Which configuration meets these requirements?
- Share the central Transit Gateway (TGW) with the spoke accounts using AWS Resource Access Manager (RAM), and attach the spoke VPCs to the TGW. Associate the TGW with the Direct Connect Gateway (DXGW) using a transit virtual interface (Transit VIF), and attach the Site-to-Site VPN to the TGW. Enable BGP propagation for both attachments in the TGW route table. On the customer gateway, prepend the autonomous system number (ASN) on the VPN BGP path advertised to AWS, and set a higher BGP local preference for AWS routes received via the Direct Connect connection.Answer
- BAssociate the spoke VPCs directly with the DXGW, and configure a Site-to-Site VPN connection using a Virtual Private Gateway (VGW) in each spoke VPC. Enable BGP routing on all VGWs and the DXGW. On the customer gateway, configure the BGP community values to prioritize the Direct Connect path over the VPN paths for inbound and outbound traffic.
- CShare the central Transit Gateway (TGW) with the spoke accounts using AWS Resource Access Manager (RAM), and attach the spoke VPCs to the TGW. Associate the TGW with the DXGW, and attach the Site-to-Site VPN to the TGW. To enable on-premises DNS resolution, associate the central account's Route 53 Private Hosted Zone (PHZ) with the Transit Gateway, relying on TGW propagation to share the DNS records with all spoke VPCs.
- DAttach the spoke VPCs to the TGW. Create a central egress VPC with a single NAT Gateway to handle outbound internet traffic and peer the egress VPC with the TGW. Associate the TGW with the DXGW and configure static routes in the TGW route table pointing to the DXGW with a metric of 10, and static routes pointing to the VPN attachment with a metric of 50 to establish the primary and backup path relationship.