Azure
Microsoft Docs

ExpressRoute and Azure Virtual WAN

Azure ExpressRoute provides a private, dedicated connection between your on‑premises infrastructure and Microsoft Azure. When combined with Azure Virtual WAN, you can extend this private connectivity across a global, unified network architecture, simplifying the management of branch‑to‑branch, branch‑to‑datacenter, and user‑to‑cloud traffic.

Key Benefits

How It Works

When you associate an ExpressRoute circuit with a Virtual WAN hub, the hub acts as a bridge, advertising routes learned from the circuit to all spokes and vice‑versa. This creates a meshed topology without the need for explicit point‑to‑point connections.

ComponentDescription
ExpressRoute CircuitDedicated, private connection to Microsoft edge.
Virtual WAN HubRegional routing point that aggregates connectivity.
Spokes (VNets/Branch VPN)Resources that communicate via the hub.
Route Server (optional)Enables dynamic BGP routing with on‑prem devices.

Prerequisites

  1. An active Azure subscription.
  2. Provisioned ExpressRoute circuit with at least Standard SKU.
  3. Virtual WAN resource created in the desired region.
  4. Network permissions to create and associate resources.

Configuration Steps

Follow these steps in the Azure portal or via Azure CLI/PowerShell.

# Azure CLI example
az network express-route create \
    --name MyERcircuit \
    --resource-group MyRG \
    --location eastus \
    --sku Standard_MeteredData \
    --provider Microsoft \
    --peering-location "Silicon Valley"

# Create Virtual WAN and hub
az network vwan create --name MyWAN --resource-group MyRG --location eastus
az network vhub create --name MyHub --resource-group MyRG --vwan MyWAN --address-prefix 10.0.0.0/24

# Associate ExpressRoute circuit with the hub
az network vhub connection create \
    --name ER-to-Hub \
    --resource-group MyRG \
    --vhub-name MyHub \
    --express-route-circuit MyERcircuit \
    --authorization-key 

Best Practices

FAQ

Can I have multiple ExpressRoute circuits attached to a single hub?
Yes. You can associate multiple circuits for higher bandwidth or redundancy.
Is traffic between a spoke and the on‑premises network routed through the hub?
All traffic traverses the hub, which provides a single point for policies and monitoring.
How does failover to VPN work?
Virtual WAN automatically creates a VPN tunnel as a fallback. If the ExpressRoute link fails, traffic is seamlessly rerouted over the VPN.