0
0
Azurecloud~20 mins

VNet creation and address space in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
VNet Address Space Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding VNet Address Space Overlaps

You have two Azure Virtual Networks (VNets). VNet A has the address space 10.0.0.0/16. VNet B has the address space 10.0.1.0/24. What will happen if you try to peer these two VNets?

AThe peering will succeed because 10.0.1.0/24 is a subset of 10.0.0.0/16, so they are compatible.
BThe peering will fail because the address spaces overlap, which is not allowed in VNet peering.
CThe peering will succeed but traffic between VNets will be blocked due to overlapping address spaces.
DThe peering will succeed only if you enable gateway transit on both VNets.
Attempts:
2 left
💡 Hint

Think about whether overlapping IP ranges are allowed in VNet peering.

Configuration
intermediate
2:00remaining
Choosing a Valid Address Space for a New VNet

You want to create a new Azure VNet in a subscription that already has a VNet with address space 192.168.0.0/24. Which of the following address spaces can you assign to the new VNet without causing conflicts?

A192.168.1.0/24
B192.168.0.128/25
C192.168.0.0/23
D192.168.0.64/26
Attempts:
2 left
💡 Hint

Check if the new address space overlaps with the existing 192.168.0.0/24 range.

Architecture
advanced
2:30remaining
Designing VNet Address Spaces for Multi-Region Deployment

You are designing VNets for a multi-region Azure deployment. You want to avoid address space conflicts and allow future peering between VNets. Which approach is best for assigning address spaces?

AUse overlapping address spaces but rely on network security groups to isolate traffic.
BAssign the same address space to all VNets in different regions to simplify routing.
CAssign non-overlapping, contiguous CIDR blocks to each VNet, for example, 10.0.0.0/16 for region 1 and 10.1.0.0/16 for region 2.
DAssign random address spaces without coordination and fix conflicts when they arise.
Attempts:
2 left
💡 Hint

Think about how to avoid conflicts and enable peering in the future.

security
advanced
2:30remaining
Impact of Overlapping Address Spaces on Network Security

You have two VNets with overlapping address spaces that are connected via VPN Gateway. What is a likely security risk in this scenario?

ATraffic between VNets will be encrypted, so there is no security risk.
BVPN Gateway will prevent any communication between VNets with overlapping address spaces.
CNetwork security groups will automatically block all traffic between overlapping VNets.
DOverlapping address spaces can cause traffic to be misrouted, potentially exposing sensitive data to the wrong VNet.
Attempts:
2 left
💡 Hint

Consider what happens when IP addresses overlap in different networks.

service_behavior
expert
3:00remaining
Behavior of Azure VNet with Multiple Address Spaces

You create an Azure VNet and assign two address spaces: 10.0.0.0/16 and 10.1.0.0/24. You then create a subnet with address range 10.1.0.0/25. What is the behavior of this subnet within the VNet?

AThe subnet is valid and usable because its address range is within one of the VNet's address spaces.
BThe subnet is invalid because subnets cannot be created from the second address space of a VNet.
CThe subnet overlaps with the VNet's primary address space and will cause deployment failure.
DThe subnet must be larger than /24 to be valid within the VNet.
Attempts:
2 left
💡 Hint

Think about how VNets support multiple address spaces and subnet creation.