🔒 Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AZ-700 Domain 2
Domain 2 — Module 3 of 6 50%
10 of 26 overall

AZ-700 Study Guide

Domain 1: Core Networking Infrastructure

  • Virtual Networks: Your Cloud Foundation Free
  • IP Addressing: Public, Private & Prefixes Free
  • Name Resolution: Azure DNS Free
  • Routing: UDRs, Route Server & NAT Gateway Free
  • VNet Peering and Connectivity
  • Network Monitoring and Diagnostics
  • DDoS Protection and Security Posture

Domain 2: Connectivity Services

  • Site-to-Site VPN: Connecting On-Premises
  • Point-to-Site VPN: Remote Access
  • ExpressRoute Fundamentals
  • ExpressRoute: Advanced Features
  • Azure Virtual WAN
  • Choosing Your Hybrid Connection

Domain 3: Application Delivery Services

  • Azure Load Balancer: Layer 4
  • Traffic Manager: DNS-Based Routing
  • Application Gateway: Layer 7
  • Azure Front Door: Global Delivery
  • Choosing the Right Load Balancer

Domain 4: Private Access to Azure Services

  • Private Link and Private Endpoints
  • Private Endpoint DNS
  • Service Endpoints: When and How

Domain 5: Network Security Services

  • NSGs and Application Security Groups
  • Flow Logs, IP Flow Verify & Network Manager Security
  • Azure Firewall: SKUs and Deployment
  • Azure Firewall Manager and Policies
  • Web Application Firewall (WAF)

AZ-700 Study Guide

Domain 1: Core Networking Infrastructure

  • Virtual Networks: Your Cloud Foundation Free
  • IP Addressing: Public, Private & Prefixes Free
  • Name Resolution: Azure DNS Free
  • Routing: UDRs, Route Server & NAT Gateway Free
  • VNet Peering and Connectivity
  • Network Monitoring and Diagnostics
  • DDoS Protection and Security Posture

Domain 2: Connectivity Services

  • Site-to-Site VPN: Connecting On-Premises
  • Point-to-Site VPN: Remote Access
  • ExpressRoute Fundamentals
  • ExpressRoute: Advanced Features
  • Azure Virtual WAN
  • Choosing Your Hybrid Connection

Domain 3: Application Delivery Services

  • Azure Load Balancer: Layer 4
  • Traffic Manager: DNS-Based Routing
  • Application Gateway: Layer 7
  • Azure Front Door: Global Delivery
  • Choosing the Right Load Balancer

Domain 4: Private Access to Azure Services

  • Private Link and Private Endpoints
  • Private Endpoint DNS
  • Service Endpoints: When and How

Domain 5: Network Security Services

  • NSGs and Application Security Groups
  • Flow Logs, IP Flow Verify & Network Manager Security
  • Azure Firewall: SKUs and Deployment
  • Azure Firewall Manager and Policies
  • Web Application Firewall (WAF)
Domain 2: Connectivity Services Premium ⏱ ~14 min read

ExpressRoute Fundamentals

Understand ExpressRoute connectivity models, SKU tiers (Local/Standard/Premium), peering types, and gateway SKUs for dedicated private connectivity to Azure.

ExpressRoute Fundamentals

ExpressRoute provides a private, dedicated connection between your on-premises infrastructure and Azure. Unlike VPN, traffic never touches the public internet — it goes through a connectivity provider’s private network.

🎬 Video coming soon

ExpressRoute Fundamentals

ExpressRoute Fundamentals

~14:00
☕ Simple explanation

ExpressRoute is a private highway between your network and Azure — while VPN uses the public internet, ExpressRoute gives you a dedicated lane. A connectivity provider physically connects your network to Azure’s edge. Traffic never touches the public internet, so you get predictable performance and higher bandwidth.

Azure ExpressRoute establishes a Layer 2 or Layer 3 private connection from on-premises to Azure, facilitated by a connectivity provider. Key advantages: bandwidth up to 100 Gbps, predictable latency, 99.95% SLA, traffic stays on MPLS network, and access to both Azure IaaS (private peering) and Microsoft 365 (Microsoft peering).

Connectivity Models

You don’t plug a cable directly into a Microsoft data centre. You work through a connectivity provider using one of four models:

ModelHow It WorksTypical Provider
Co-location exchangeYour equipment is in the same facility as Azure’s. Layer 2 or Layer 3 cross-connect.Equinix, Megaport, NTT
Point-to-point EthernetDedicated Layer 2 link from your DC to the exchange.Carrier (e.g., Verizon, BT)
Any-to-any (IPVPN)Your WAN provider (MPLS) connects all your sites and Azure as another branch.Telstra, AT&T, Vodafone
ExpressRoute DirectDedicated physical ports (10G or 100G) directly into Microsoft’s edge. You own the port.Direct from Microsoft

🏢 Ravi’s scenario: Pinnacle Financial’s Auckland DC is co-located at an Equinix facility. He orders a 1 Gbps ExpressRoute circuit through Equinix as the provider. Setup takes 2-4 weeks for the provider to provision.

ExpressRoute SKU Tiers

FeatureLocalStandardPremium
ReachSame metro area as peering locationAll regions within a geopolitical regionAll regions globally
Data egressUnlimited (included)Metered (pay per GB out)Metered (pay per GB out)
VNet connections10 per circuit10 per circuit100 per circuit
Route prefixes (Microsoft peering)Same as Standard4,000 IPv4 / 100 IPv610,000 IPv4 / 100 IPv6
CostLowest (no egress charges)MediumHighest

Exam Tip — Local vs Standard vs Premium:

  • Local: Cheapest option. Only reaches Azure regions near your peering location. Unlimited data egress is the key benefit — no per-GB charges. Perfect for latency-sensitive workloads near your peering location.
  • Standard: Reaches all regions in the same geopolitical region (e.g., all of Asia-Pacific, all of North America). Data egress is metered.
  • Premium: Global reach — connect from Australia to US regions and everywhere else. Required for cross-geo connectivity. 10x more VNet links.

🏢 Ravi’s choice: His Azure resources are in Australia East (Sydney) and he peers at the Sydney Equinix location. Local SKU gives him the lowest cost with unlimited egress. If he later expands to Southeast Asia, he’d upgrade to Premium.

Peering Types

ExpressRoute has two peering types (Azure public peering was retired):

Private Peering vs Microsoft Peering
FeaturePrivate PeeringMicrosoft Peering
What it reachesAzure VNets (VMs, internal LBs, private endpoints)Microsoft 365, Dynamics 365, Azure PaaS public endpoints
Address spaceYour private IPs (RFC 1918)Public IPs (you provide or NAT)
RoutingBGP between your router and AzureBGP between your router and Azure
NAT requiredNoYes — you must NAT to public IPs
Common use caseExtend your DC to AzurePrivate path to M365 and Azure PaaS
Required forVM workloads, private connectivityOrganizations requiring M365 traffic off the internet

Private peering is the most common — it’s how you access your VNets privately. Azure advertises your VNet ranges via BGP, and your router advertises your on-prem ranges back.

Microsoft peering routes traffic to Microsoft public services over the private connection instead of the internet. It requires NAT because Microsoft’s services use public IPs. This is used when compliance requires M365 traffic to never traverse the public internet.

Setting up peering:

  1. Private peering: Configure a /30 subnet for the BGP session (one IP for your router, one for Azure’s). Configure ASN and VLAN ID. Azure starts advertising VNet routes.
  2. Microsoft peering: Same BGP session setup, plus you provide public IP prefixes for NAT and configure route filters to select which Microsoft services you want to receive routes for.

ExpressRoute Gateway SKUs

Just like VPN Gateways, ExpressRoute requires a gateway in your VNet. But the SKUs are different:

Gateway SKUMax ConnectionsThroughputFastPathZone-Redundant Variant
Standard (ErGw1Az)4 circuits1 GbpsNoErGw1Az
High Performance (ErGw2Az)8 circuits2 GbpsNoErGw2Az
Ultra Performance (ErGw3Az)16 circuits10 GbpsYesErGw3Az
ErGwScale16 circuitsUp to 40 Gbps (scalable)YesBuilt-in

Exam Tip: FastPath (covered in the next module) requires Ultra Performance (ErGw3Az) or ErGwScale gateway. Standard and High Performance gateways don’t support it.

ℹ️ Route Advertisement and Limits

What Azure advertises to on-premises (Private Peering):

  • All VNet address prefixes connected to the ExpressRoute gateway
  • System routes for connected VNets

What you advertise to Azure:

  • Your on-premises network ranges
  • Azure learns these via BGP and adds them as routes in connected VNets

Route limits:

  • Private peering: 4,000 routes (Standard), 10,000 routes (Premium) from on-prem to Azure
  • If you exceed the limit, the BGP session drops until routes are reduced
  • Use route summarisation (aggregation) to stay within limits

Important: Azure does NOT advertise default route (0.0.0.0/0) over ExpressRoute by default. If you want forced tunneling, you must advertise 0.0.0.0/0 from on-premises. This causes all Azure internet traffic to route through your DC.

Key Takeaways

  • ExpressRoute is a private, dedicated connection — no public internet
  • Local SKU: cheapest, unlimited egress, limited to nearby regions
  • Premium SKU: global reach, 100 VNet connections, highest cost
  • Private peering: access VNets. Microsoft peering: access M365/PaaS publicly
  • Gateway SKU determines throughput and FastPath eligibility

Test Your Knowledge

Question

What's the key cost benefit of the ExpressRoute Local SKU?

Click or press Enter to reveal answer

Answer

Unlimited data egress — no per-GB charges for outbound data. However, it only reaches Azure regions near your peering location (same metro area).

Click to flip back

Question

What are the two ExpressRoute peering types?

Click or press Enter to reveal answer

Answer

Private Peering — access Azure VNets (VMs, private endpoints). Microsoft Peering — access Microsoft 365, Dynamics 365, and Azure PaaS public endpoints over the private connection.

Click to flip back

Question

Which ExpressRoute gateway SKUs support FastPath?

Click or press Enter to reveal answer

Answer

Ultra Performance (ErGw3Az) and ErGwScale only. Standard and High Performance gateways do not support FastPath.

Click to flip back

Question

How many VNet connections does ExpressRoute Premium support?

Click or press Enter to reveal answer

Answer

Up to 100 VNet connections per circuit (vs 10 for Local and Standard). Premium also supports cross-geo connectivity and 10,000 route prefixes.

Click to flip back


Knowledge Check

Ravi's resources are in Australia East and he peers at Sydney. He wants the lowest cost with predictable billing. Which ExpressRoute SKU should he choose?

Knowledge Check

Elena needs to access Azure VMs in her VNets over ExpressRoute. Which peering type does she configure?

Knowledge Check

Which ExpressRoute connectivity model lets you use your existing MPLS WAN provider to connect to Azure as another site?


Next up: ExpressRoute: Advanced Features — Global Reach, FastPath, Direct ports, encryption, and redundancy patterns.

← Previous

Point-to-Site VPN: Remote Access

Next →

ExpressRoute: Advanced Features

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.