Reset a failed ExpressRoute circuit

When an operation on an ExpressRoute circuit doesn't complete successfully, the circuit may go into a 'failed' state. This article helps you reset a failed Azure ExpressRoute circuit.

Azure portal

  1. Sign in to the Azure portal with your Azure account.

  2. Search for ExpressRoute circuits in the search box at the top of the portal.

  3. Select the ExpressRoute circuit that you want to reset.

  4. Select Refresh from the top menu.

    Screenshot of refresh button for an ExpressRoute circuit.

Azure PowerShell

The steps and examples in this article use Azure PowerShell Az modules. To install the Az modules locally on your computer, see Install Azure PowerShell. To learn more about the new Az module, see Introducing the new Azure PowerShell Az module. PowerShell cmdlets are updated frequently. If you are not running the latest version, the values specified in the instructions may fail. To find the installed versions of PowerShell on your system, use the Get-Module -ListAvailable Az cmdlet.

  1. Install the latest version of the Azure Resource Manager PowerShell cmdlets. For more information, see Install and configure Azure PowerShell.

  2. Open your PowerShell console with elevated privileges, and connect to your account. Use the following example to help you connect:

    Connect-AzAccount
    
  3. If you have multiple Azure subscriptions, check the subscriptions for the account.

    Get-AzSubscription
    
  4. Specify the subscription that you want to use.

    Select-AzSubscription -SubscriptionName "Replace_with_your_subscription_name"
    
  5. Run the following commands to reset a circuit that is in a failed state:

    $ckt = Get-AzExpressRouteCircuit -Name "ExpressRouteARMCircuit" -ResourceGroupName "ExpressRouteResourceGroup"
    
    Set-AzExpressRouteCircuit -ExpressRouteCircuit $ckt
    

The circuit should now be healthy. Open a support ticket with Microsoft support if the circuit is still in a failed state.

Next steps

Open a support ticket with Microsoft support if you're still experiencing issues.