DR for the Azure Portal

Abboud, Paul 0 Reputation points
2026-05-20T15:39:43.8533333+00:00

Are there, Redundant paths to Azure, should the main link become compromised or made unavailable? I'm coming at this from a DR perspective. If we lose the portal.azure.com link, how can we still get to Azure to do what we need?

Azure ExpressRoute
Azure ExpressRoute

An Azure service that provides private connections between Azure datacenters and infrastructure, either on premises or in a colocation environment.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Thanmayi Godithi 11,825 Reputation points Microsoft External Staff Moderator
    2026-05-22T17:36:53.33+00:00

    Hey Paul, it sounds like you’re thinking about two different “break-glass” scenarios:

    1. Network path to Azure itself gets cut over your primary link
    2. The Azure portal (portal.azure.com) is unreachable

    Here’s a quick summary of your DR options for each:

    1. 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.
    2. 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)?

    Was this answer helpful?

    0 comments No comments

  2. Megha Ramakrishnan 500 Reputation points
    2026-05-20T19:52:27.1133333+00:00

    Hi,

    Yes. Azure provides multiple redundant paths and control planes so that loss of the Azure portal does not block access to resources or DR operations.

    Key points for DR if the Azure portal is unavailable:

    Use alternative control planes instead of the portal

    1. Azure Resource Manager is the unified control plane for Azure services. If the portal is unavailable, use: Azure CLI Azure PowerShell Azure REST APIs
    2. For mission-critical web applications, design a redundant ingress path so that traffic can be rerouted if a primary path or control surface is impacted. Using Azure Front Door with Azure Traffic Manager as an alternate global router.

    Thanks.

    Was this answer helpful?

    0 comments No comments

  3. AI answer

    2026-05-20T15:40:13.9466667+00:00

    Azure provides multiple redundant paths and control planes so that loss of the Azure portal (https://portal.azure.com) does not block access to resources or DR operations.

    Key points for DR if the Azure portal is unavailable:

    1. Use alternative control planes instead of the portal
      • Azure Resource Manager is the unified control plane for Azure services. If the portal is unavailable, use:
        • Azure CLI
        • Azure PowerShell
        • Azure REST APIs
      • These tools allow performing critical DR tasks such as rerouting traffic, scaling resources, or failing over services without relying on the portal.
      • This aligns with guidance to avoid a dependency on a single tool like the Azure portal for failover and reconfiguration.
    2. Plan redundant ingress and routing paths
      • For mission-critical web applications, design a redundant ingress path so that traffic can be rerouted if a primary path or control surface is impacted.
      • Example patterns include:
        • Using Azure Front Door with Azure Traffic Manager as an alternate global router.
        • Defining a secondary path with alternate services that can become primary when the main path is unavailable.
      • The focus is on ensuring traffic can be redirected and services managed even when one path or tool is unavailable.
    3. Minimize control-plane complexity
      • When using Azure-native services, Azure Resource Manager provides a single, consistent control plane.
      • Introducing external routing or control planes (for example, third-party DNS or traffic managers) adds complexity and risk; each additional control plane is another point where configuration might diverge.
      • DR procedures should explicitly account for how many independent control planes must be used during a failover.
    4. Design DR for connectivity and networking
      • For network-level DR (including ExpressRoute and other connectivity), design non-overlapping redundancy for each dependency in the end-to-end communication path.
      • Consider:
        • Redundant connectivity paths between on-premises and Azure.
        • Geo-redundant designs for ExpressRoute as described in high-availability and DR guidance.
      • Ensure routing is architected to avoid asymmetrical routing issues when multiple paths exist.
    5. Use Azure regions and availability zones for resilience
      • For broader DR, use:
        • Availability zones for local redundancy.
        • Multiple Azure regions for geo-distant redundancy.
      • Azure can act as a failover site for workloads running in another region or on-premises.
      • Many Azure services have built-in failover and DR capabilities that should be incorporated into DR plans.
    6. Continuous validation and DR testing
      • DR plans must be tested regularly to ensure operations can be performed without the portal:
        • Validate that traffic can be redirected via alternate paths using CLI/PowerShell/REST.
        • Confirm both primary and secondary paths can handle expected production load.
        • Verify security posture on all paths, including during degraded states.
    7. Azure DNS and core services
      • Azure DNS is highly available by design and does not require separate DR uplift.
      • Other networking components (virtual networks, firewalls, ExpressRoute) should be included in DR design and, where applicable, replicated or configured for high availability.

    In practice, a DR plan for “loss of portal.azure.com” should explicitly document:

    • CLI/PowerShell/REST procedures for critical operations (failover, scaling, routing changes).
    • Alternate global routing strategy (for example, Azure Traffic Manager in front of or alongside Azure Front Door).
    • Network and ExpressRoute redundancy design.
    • Regular DR drills that assume the portal is unavailable.

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.