Azure Networking is Microsoft's comprehensive suite of cloud networking services that enable secure connectivity, traffic management, and network security for resources deployed in Azure. Operating across 60+ global AI regions with a backbone now exceeding 18 petabits per second of WAN capacity, Azure networking provides the foundation for hybrid cloud architectures, application delivery, and zero-trust security models. As of March 31, 2026, all newly created virtual networks default to private subnets with no default outbound internet access, requiring explicit methods (NAT Gateway, Load Balancer, or Public IP) — a fundamental shift toward secure-by-default network design. New services like Azure Virtual Network Manager, DNS Security Policy with Threat Intelligence, and StandardV2 NAT Gateway continue to raise the bar for enterprise-grade networking.
What This Cheat Sheet Covers
This topic spans 14 focused tables and 118 indexed concepts, 101 flashcards. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: Virtual Network Foundations
Everything in Azure networking starts with the VNet—your private slice of the cloud—and the pieces that fill it. These rows cover how you carve a VNet into subnets, attach NICs and IP addresses, and the gotchas worth committing to memory: Azure quietly reserves five IPs per subnet, and as of March 2026 new subnets ship with no default outbound internet access at all.
| Concept | Example | Description | |
|---|---|---|---|
10.0.0.0/16 address space | • Isolated private network in Azure • supports custom RFC 1918 address spaces and can be segmented into subnets, peered, or connected to on-premises. | ||
10.0.1.0/24 | • Subdivision of a VNet • Azure reserves 5 IPs per subnet (first 4 and last 1), so a /29 gives only 3 usable IPs. | ||
Subnet delegated to Microsoft.Web/serverFarms | • Designates a subnet for injection of a specific Azure PaaS service • the service can add its own network intent policies (routes, NSG rules) to that subnet. | ||
10.0.0.0/16, 172.16.0.0/16 | • CIDR blocks defining IP ranges for a VNet • can be expanded or added after creation without downtime if the new range contains all existing subnets. | ||
nic-vm-01 attached to VM | • Virtual network adapter attached to a VM • can have multiple IP configurations (primary + secondary private IPs) and supports accelerated networking via SR-IOV. | ||
10.0.1.5 (dynamic or static) | • IP assigned to NIC from subnet range • dynamic by default (DHCP, persists during stop/start) • static locks a specific IP permanently. | ||
20.50.100.15 (Standard SKU) | • Internet-routable IP • Standard SKU is zone-redundant and requires explicit NSG rules • Basic SKU retired September 2025. | ||
Primary: 10.0.1.5Secondary: 10.0.1.6 | • Binding of private IP (and optionally public IP) to NIC • one primary required • multiple secondary configs supported for multi-IP scenarios. | ||
Subnet with defaultOutboundAccess: false | • Subnet without default internet access • since March 31, 2026, all new VNets default to this, requiring NAT Gateway, Load Balancer, or Public IP for outbound. | ||
Enabled on NIC for supported VM sizes | • Uses SR-IOV to bypass the host networking stack • delivers up to 30 Gbps throughput and single-digit microsecond latency for supported VM sizes. |