An Azure service that provides private connections between Azure datacenters and infrastructure, either on premises or in a colocation environment.
Hey Paul, it sounds like you’re thinking about two different “break-glass” scenarios:
- Network path to Azure itself gets cut over your primary link
- The Azure portal (portal.azure.com) is unreachable
Here’s a quick summary of your DR options for each:
- Redundant network connectivity • ExpressRoute Active/Active circuits – every ExpressRoute circuit actually comes with two physically separate connections (A and B) to two different Microsoft edge routers. If one path drops, traffic automatically shifts to the other. • Multiple peering locations – for maximum resiliency you can deploy a second ExpressRoute circuit in a different peering location (same or different region). • Site-to-Site VPN backup – you can run an IPsec VPN over the public Internet as an automatic failover if your ExpressRoute circuit ever goes down. Azure VPN Gateway supports “ExpressRoute fallback” so your workloads keep talking to Azure. • Azure Virtual WAN – provides a managed hub-and-spoke model that can stitch together ExpressRoute, VPN and even SD-WAN, with built-in failover.
- Alternate management interfaces if the portal’s down • Azure CLI / PowerShell – you can script virtually everything against the ARM endpoint (https://management.azure.com) without ever touching the portal. • REST API or SDKs – every ARM operation is exposed via REST, so you could even call from your own tooling or custom dashboards. • ARM templates (declarative templates) – pre-baked infrastructure-as-code that you just push via CLI/PowerShell/DevOps pipelines. • Azure Mobile App – lightweight management from iOS/Android if the desktop portal is down. • Classic Azure Service Management APIs – if you still have classic/ASM-only workloads, you can fall back to the old management.core.windows.net endpoints.
Hope that gives you some ideas on how to build in both network-layer and management-plane redundancy.
Let me know:
• Are you primarily worried about ExpressRoute/VPN path failures, or about the portal service itself having an outage?
• What connectivity do you have in place today (Internet-only, VPN, ExpressRoute)?
• Which kinds of management tasks do you need to perform if the portal isn’t available (for example: VM scale-up, network troubleshooting, template deployments)?