ExpressRoute Circuit Design

Watch the video to deepen your understanding.
SubscribeComplete the full lesson to earn 25 points — 50 with Pro
Work through each section, then tap “Mark as Complete” on the last one.
✦ Skip the page breaks, the wait, and see fewer ads — read each lesson on a single page with Pro
Lesson: ExpressRoute Circuit Design
Introduction: Bridging the Gap
In modern cloud architecture, the public internet is often insufficient for enterprise-grade workloads. Whether you are dealing with sensitive data, high-bandwidth requirements, or strict latency SLAs, relying on the public internet introduces unpredictability.
Azure ExpressRoute provides a private, dedicated connection between your on-premises infrastructure (or colocation facility) and Microsoft Azure. Unlike a Site-to-Site VPN, which tunnels traffic over the public internet, ExpressRoute creates a direct "private lane" into the Microsoft global network.
Why use ExpressRoute?
- Predictable Performance: Dedicated bandwidth ensures consistent throughput.
- Enhanced Security: Data does not traverse the public internet.
- Reliability: Service Level Agreements (SLAs) guarantee high availability.
- Cost Efficiency: For high-volume data egress, ExpressRoute can be more cost-effective than internet-based data transfer.
Detailed Design Components
Designing an ExpressRoute solution requires balancing technical requirements with physical connectivity options.
1. Connectivity Models
There are two primary ways to connect your network to Azure:
- Cloud Exchange Co-location: If your hardware is in a facility that also houses a Microsoft peering location, you can request a cross-connect.
- Point-to-Point Ethernet: If you are not in a co-location facility, you use a service provider to establish a virtual circuit from your data center to the Microsoft edge.
2. Circuit Tiers and Billing Models
When provisioning a circuit, you must choose:
- Local SKU: Data transfer is included in the monthly fee, but it only allows access to the Azure region physically nearest to the peering location.
- Standard SKU: Allows access to all regions within a geopolitical boundary.
- Premium SKU: Required for global connectivity (e.g., connecting a branch in Asia to a VNet in North America) and increased route limits.
3. Peering Configurations
ExpressRoute circuits use "Peerings" to route traffic:
- Azure Private Peering: Connects to your private IP space (VNets). This is the most common configuration.
- Microsoft Peering: Connects to public Azure services (e.g., Azure Storage, SQL Database, M365).
Practical Implementation: Infrastructure as Code
Using Terraform is the industry standard for deploying ExpressRoute circuits to ensure consistency and repeatability.
Example: Provisioning an ExpressRoute Circuit
resource "azurerm_express_route_circuit" "example" {
name = "er-circuit-production"
resource_group_name = azurerm_resource_group.main.name
location = azurerm_resource_group.main.location
service_provider_name = "Equinix"
peering_location = "Silicon Valley"
bandwidth_in_mbps = 1000
sku {
tier = "Standard"
family = "MeteredData"
}
}
resource "azurerm_express_route_circuit_peering" "private" {
peering_type = "AzurePrivatePeering"
express_route_circuit_name = azurerm_express_route_circuit.example.name
resource_group_name = azurerm_resource_group.main.name
shared_key = "YourSecureBGPKey"
peer_asn = 65001
primary_peer_address_prefix = "192.168.1.0/30"
secondary_peer_address_prefix = "192.168.1.4/30"
vlan_id = 100
}
Note: The
primary_peer_address_prefixandsecondary_peer_address_prefixmust be/30subnets. These are used for the BGP session between your edge router and the Microsoft edge.
Best Practices
- Redundancy is Non-Negotiable: Never design a single-circuit solution for production. Always provision two ExpressRoute circuits in different peering locations (or at least different routers within the same location) to protect against provider or hardware failure.
- Use BGP Communities: Microsoft supports BGP communities. Use them to influence routing and ensure that traffic follows the intended path, especially when you have multiple circuits.
- Monitor with Azure Monitor: Enable Network Performance Monitor (NPM) to track latency, packet loss, and BGP health.
- Implement BFD (Bidirectional Forwarding Detection): Enable BFD on your BGP sessions to detect link failures in milliseconds rather than waiting for standard BGP keep-alive timers.
- Plan for Scalability: If you anticipate growth, start with a higher bandwidth SKU. While you can upgrade bandwidth (e.g., 500Mbps to 1Gbps), downgrading usually requires deleting and recreating the circuit.
Common Pitfalls
- MTU Mismatches: ExpressRoute supports an MTU of 1500 bytes by default. If you require Jumbo Frames (up to 9000 bytes), you must ensure your provider supports it and configure it explicitly.
- Asymmetric Routing: When using both a VPN and an ExpressRoute circuit, ensure you have a clear routing strategy (e.g., using BGP AS-Path prepending) to ensure return traffic follows the expected path.
- Ignoring Service Limits: Each ExpressRoute circuit has limits on the number of VNets that can be linked. Check the Azure Subscription Limits before architecting complex hub-and-spoke models.
- Mismanaging Public IP Ranges: When configuring Microsoft Peering, ensure you own the public IP ranges you advertise to Microsoft. Unauthorized advertisement will be rejected by RPKI/IRR filters.
Key Takeaways
- ExpressRoute replaces the public internet with a private, dedicated connection, offering superior reliability and security.
- Redundancy is the most critical design factor; always design for failure by provisioning at least two circuits.
- Peering Types dictate what traffic is allowed: Private Peering for your internal VNets, and Microsoft Peering for SaaS and public PaaS endpoints.
- Automation via Terraform/Bicep is essential for maintaining consistent configurations across complex enterprise networks.
- Monitoring through BGP health and latency metrics is required to maintain the SLAs expected of a dedicated circuit.
Reach the last section to complete this lesson and earn points — you're on section 1 of 5.
- Introduction to Azure Monitor
- Azure Monitor Architecture and Data Sources
- Configuring Log Analytics Workspaces
- Designing Log Routing Solutions
- Configuring Diagnostic Settings
- Application Insights for Solution Architects
- Network Watcher and Network Monitoring
- Azure Monitor Alerts and Action Groups
- Workbooks and Custom Dashboards
- Designing a Comprehensive Monitoring Strategy
- Logging and Monitoring Quiz5q
- Microsoft Entra ID for Solution Architects
- Designing Identity Solutions: B2B Collaboration
- Designing Identity Solutions: B2C Scenarios
- Conditional Access Policy Design
- Designing for Multi-Factor Authentication
- Managed Identities for Azure Resources
- Service Principals and App Registrations
- Role-Based Access Control Design
- Privileged Identity Management
- Microsoft Entra ID Protection
- Zero Trust Architecture with Microsoft Entra
- Authentication and Authorization Quiz5q
- Introduction to Azure Governance
- Designing Management Group Hierarchies
- Subscription Strategy Design
- Resource Group Organization Patterns
- Azure Policy Design and Assignment
- Custom Policy Definitions and Initiatives
- Resource Locks and Tagging Strategies
- Azure Blueprints and Landing Zones
- Cost Management and Budget Design
- Cloud Adoption Framework for Governance
- Governance Solutions Quiz5q
- Introduction to Azure Storage
- Storage Account Types and Replication
- Blob Storage Tiers and Lifecycle Management
- Azure Files and Azure NetApp Files
- Azure Managed Disks Design
- Azure Data Lake Storage Gen2
- Cosmos DB Consistency Models
- Cosmos DB Partitioning and Throughput Design
- Cosmos DB API Selection Guide
- Table Storage and Queue Storage Design
- Storage Security and Encryption
- Non-Relational Storage Quiz5q
- Azure SQL Database Service Tiers
- Azure SQL Managed Instance Design
- Azure Database for MySQL and PostgreSQL
- Database Scaling: Vertical and Horizontal
- Read Replicas and Geo-Replication
- Database Security and Auditing Design
- Transparent Data Encryption and Always Encrypted
- Caching with Azure Cache for Redis
- Azure SQL Elastic Pools Design
- Relational Storage Quiz5q
- Azure Data Factory Design Patterns
- Data Integration Pipeline Architecture
- Azure Synapse Analytics Design
- Azure Databricks Integration Patterns
- Azure Stream Analytics for Real-Time Data
- Azure Event Hubs for Data Ingestion
- Data Migration Strategies and Tools
- Azure Purview for Data Governance
- Data Integration Quiz5q
- Introduction to High Availability in Azure
- Availability Zones and Availability Sets
- Azure Load Balancer Design
- Application Gateway and WAF Design
- Azure Front Door and Global Load Balancing
- Azure Traffic Manager Routing Methods
- Multi-Region Architecture Design
- SLA Design and Composite SLAs
- Health Probes and Failover Configuration
- Azure Service Fabric for Stateful HA
- High Availability Quiz5q
- Azure Backup Architecture and Vaults
- Backup Policies for VMs and Databases
- Azure Site Recovery Design
- RTO and RPO Planning Strategies
- Geo-Redundant and Cross-Region Recovery
- Hybrid and On-Premises Backup Solutions
- Resiliency Patterns and Chaos Engineering
- Disaster Recovery Testing and Drills
- Azure Immutable Backup and Soft Delete
- Backup and Disaster Recovery Quiz5q
- Introduction to Azure Compute Options
- Virtual Machine Design and Sizing
- VM Scale Sets and Autoscaling Strategies
- Azure Batch for Large-Scale Workloads
- Azure App Service Plans and Design
- App Service Environments and Isolation
- Azure Container Instances
- Azure Kubernetes Service Architecture
- AKS Networking and Storage Design
- Azure Functions and Serverless Design
- Durable Functions and Orchestration
- Compute Decision Framework
- Azure Virtual Desktop Design
- Compute Solutions Quiz5q
- Microservices Architecture Patterns
- Azure API Management Design
- Azure Service Bus Messaging Design
- Azure Event Grid and Event-Driven Architecture
- Azure Event Hubs for Streaming
- Azure Logic Apps and Integration Workflows
- Azure SignalR and Web PubSub
- Caching Strategies and Azure CDN
- App Configuration and Feature Flags
- Designing for Scalability and Performance
- Azure Container Apps Design
- Application Architecture Quiz5q
- Virtual Network Design and Address Planning
- Subnet Design and Network Segmentation
- Hub-Spoke Network Topology
- Azure Virtual WAN Design
- VPN Gateway Design and Configuration
- ExpressRoute Circuit Design
- Network Security Groups Design
- Azure Firewall and Firewall Manager
- Azure DDoS Protection Design
- Private Endpoints and Private Link
- Azure DNS and DNS Architecture
- Network Performance and Traffic Routing
- Azure Bastion and Secure Access
- Network Solutions Quiz5q
- Azure Migrate Overview and Assessment
- Migration Assessment and Discovery
- Azure Cloud Adoption Framework for Migration
- VM Migration with Azure Migrate
- Database Migration with Azure DMS
- Application Migration to App Service
- Containerizing Applications for Migration
- Migration Cost Planning and Optimization
- Data Box and Offline Migration Methods
- Migrations Quiz5q
Enjoying the courses?
Everything stays free. Pro shows fewer ads, doubles the points you earn on every lesson and quiz so you progress twice as fast, unlocks half of every practice exam — plus full case studies — with the Learn & Exam study modes, and lets you read each lesson on one page.
- ✓ Fewer advertisements
- ✓ 2× points per lesson & quiz
- ✓ 50% of every exam unlocked
- ✓ Learn & Exam modes
- ✓ Distraction-free lessons