How to minimize administrative overhead for AWS Site-to-Site VPN route expansion?
A company has an AWS Site-to-Site VPN connection between AWS and its branch office. A network engineer is troubleshooting connectivity issues that the connection is experiencing. The VPN connection terminates at a transit gateway and is statically routed. In the transit gateway route table, there are several static route entries that target specific subnets at the branch office. The network engineer determines that the root cause of the issues was the expansion of underlying subnet ranges in the branch office during routine maintenance. Which solution will solve this problem with the LEAST administrative overhead for future expansion efforts?
Community Votes
64% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The question really tests choosing a self-maintaining routing mechanism (BGP propagation) over manual/static route management to eliminate future administrative overhead when on-prem networks expand.
This question tests how to handle expanding on-premises subnets behind a Transit Gateway-attached Site-to-Site VPN with minimal future operational effort. Community consensus favors replacing static routes with a dynamically routed (BGP) VPN so routes propagate automatically.
Candidates often pick A (supernet/aggregate route) or D (prefix list) because they reduce manual work short-term, but both still require manual updates when subnets grow beyond the defined range or list.
Community Discussion (11 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
The scenario describes a statically routed Site-to-Site VPN terminating at a Transit Gateway (TGW), with explicit static routes in the TGW route table pointing to the VPN attachment. The root cause of the outage is that the branch office expanded its subnet ranges, and those new prefixes were not reflected in the TGW route table.
The key requirement is LEAST administrative overhead for future expansion. Let's evaluate each option:
Why Option C is correct
Option C replaces the static VPN with a dynamically routed (BGP) Site-to-Site VPN attached to the Transit Gateway. With BGP:- The on-premises router advertises its prefixes (including any future expansions) to the AWS Customer Gateway over the VPN tunnel.
- AWS automatically learns these routes and, because the VPN attachment is configured to propagate into the TGW route table, the routes appear dynamically — no manual TGW route edits required.
- Future subnet expansions at the branch simply require the on-prem router to advertise the new prefixes; AWS handles the rest.
Why Option A is tempting but wrong
Option A suggests using a supernet (aggregate route) such as 10.0.0.0/8. While this reduces the number of entries, it is still static. If the branch later expands into a different RFC 1918 block (e.g., from 10.x to 172.16.x), the supernet must be manually updated. As several commenters noted, this does not truly eliminate administrative overhead.Why Option B is wrong
Option B proposes AWS Direct Connect with a transit VIF. Direct Connect is a physical dedicated connection — it is more expensive, requires additional provisioning, and does not solve the stated problem (the company already has a VPN). It also introduces more operational overhead, not less.Why Option D is wrong
Option D uses a managed prefix list. While prefix lists simplify referencing groups of CIDRs across multiple resources, the list itself must still be manually updated every time the branch adds a new subnet. It is a management convenience, not an automation of route learning, so it does not meet the "least administrative overhead for future expansion" requirement.Community insight
Top-voted comments reinforce the reasoning: "Move from static to dynamic routing to remove administrative overhead" and "Let dynamic routing do the work. Static routes are operational overhead." The minority votes for A and D reflect a common trap of confusing fewer static entries with no manual updates.Official Reference
Exam Strategy
When an AWS networking question emphasizes 'least administrative overhead' for changing or growing networks, always prefer the dynamic/automated option (BGP, propagation, auto-association) over static configurations like supernetting or prefix lists, which still require manual updates.
Related Analysis
Practice All ANS-C01 Questions
Access 137 questions with complete answers and detailed explanations.
View Full ANS-C01 Practice Test →