Modern enterprise cloud architectures span multiple Virtual Private Clouds (VPCs), cloud accounts, geographic regions, and on-premises data centers. Poorly designed networking introduces routing loops, high cross-AZ transit costs, security perimeter vulnerabilities, and packet fragmentation.
This guide provides an architectural blueprint for enterprise cloud networking: Hub-and-Spoke Transit Gateways, BGP Autonomous Systems, PrivateLink Endpoints, and Jumbo Frame MTU Optimization.
+-----------------------------------------------------------------------------------------------------------------------+
| CLOUD VPC TOPOLOGY COMPARISON |
+-----------------------------------------------------------------------------------------------------------------------+
| Topology | Routing Complexity | Peering Scaling | Central Inspection |
+------------------------+----------------------------------------+----------------------------+------------------------+
| Full-Mesh VPC Peering | High ($O(N^2)$ direct peering links) | Unmanageable beyond 10 VPCs| Impossible |
| Hub-and-Spoke TGW | Low ($O(N)$ links to central gateway) | Scales to 5,000+ VPCs | Native (Firewall Hub) |
| Software Defined (SDN) | Centralized overlay controller (Andromeda)| Zero explicit peering | Distributed Policy |
+-----------------------------------------------------------------------------------------------------------------------+
+-----------------------------------+
| Central Inspection Hub VPC |
| (Palo Alto / AWS Network Firewall|
+-----------------+-----------------+
|
v
+-------------------------------------------------------------------+
| Cloud Transit Gateway (TGW / NCC) |
+-------------+---------------------+-----------------+-------------+
| | |
v v v
+-----------------+ +-----------------+ +-----------------+
| Spoke 1: Prod | | Spoke 2: Staging| | On-Premises via |
| Workload VPC | | Workload VPC | | Direct Connect |
+-----------------+ +-----------------+ +-----------------+
Connecting on-premises enterprise data centers to hyperscalers requires Border Gateway Protocol (BGP, RFC 4271) over redundant dedicated interconnect circuits.
By advertising identical IP prefix routes over multiple BGP sessions, routers utilize Equal-Cost Multi-Path (ECMP) hashing to distribute packet streams across multiple 100Gbps physical links, doubling aggregate bandwidth and providing sub-second failover upon fiber cuts.