0
0
AWScloud~20 mins

Why VPC provides network isolation in AWS - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
VPC Isolation Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does a VPC isolate network traffic?
Which feature of a VPC ensures that resources inside it cannot communicate with resources outside unless explicitly allowed?
AThe VPC assigns public IP addresses to all resources to isolate them.
BThe VPC uses security groups and network ACLs to control inbound and outbound traffic.
CThe VPC disables all routing tables to prevent any traffic flow.
DThe VPC automatically encrypts all data between resources inside and outside the VPC.
Attempts:
2 left
💡 Hint
Think about how AWS controls which traffic is allowed in and out of a VPC.
Architecture
intermediate
2:00remaining
VPC Subnet Isolation
What is the main reason subnets within a VPC can be isolated from each other?
AEach subnet has its own route table that controls traffic flow between subnets.
BSubnets use different IP address ranges that prevent communication.
CSubnets are physically separated in different data centers.
DSubnets automatically encrypt all traffic between them.
Attempts:
2 left
💡 Hint
Consider how routing controls traffic inside a VPC.
security
advanced
2:00remaining
Effect of Network ACLs on VPC Isolation
What happens if a network ACL attached to a subnet denies all inbound traffic?
ANo inbound traffic can reach any resource in that subnet, effectively isolating it.
BOnly traffic from the internet is blocked, but internal VPC traffic is allowed.
CThe subnet becomes publicly accessible despite the ACL settings.
DThe network ACL settings are ignored if security groups allow traffic.
Attempts:
2 left
💡 Hint
Network ACLs act as stateless firewalls controlling traffic at the subnet level.
service_behavior
advanced
2:00remaining
VPC Peering and Network Isolation
After creating a VPC peering connection between two VPCs, what must be done to allow resources in one VPC to communicate with the other?
ACreate a VPN connection between the two VPCs.
BEnable public IP addresses on all instances in both VPCs.
CDisable security groups to allow unrestricted traffic.
DUpdate route tables in both VPCs to direct traffic through the peering connection.
Attempts:
2 left
💡 Hint
Think about how traffic knows where to go after peering is established.
Best Practice
expert
3:00remaining
Ensuring Strong Network Isolation in Multi-Tenant VPCs
Which combination of configurations best ensures strong network isolation between tenants sharing a single VPC?
AUse a single subnet with open network ACLs and rely on tenant application-level firewalls.
BAssign public IPs to all tenant resources and rely on security groups only.
CUse separate subnets with dedicated route tables, strict network ACLs, and security groups per tenant.
DDisable all security groups and rely solely on network ACLs for isolation.
Attempts:
2 left
💡 Hint
Think about layered controls at subnet and instance levels.