Skip to content

Latest commit

 

History

History
209 lines (129 loc) · 9.49 KB

File metadata and controls

209 lines (129 loc) · 9.49 KB
title Configure network routing preference
titleSuffix Azure Storage
description Configure network routing preference for your Azure storage account to specify how network traffic is routed to your account from clients over the Internet.
services storage
author normesta
ms.service azure-storage
ms.topic how-to
ms.date 08/25/2025
ms.author normesta
ms.reviewer santoshc
ms.subservice storage-common-concepts
ms.custom
devx-track-azurepowershell
sfi-image-nochange

Configure network routing preference for Azure Storage

This article describes how you can configure the network routing preference and route-specific endpoints for your storage account.

The network routing preference specifies how network traffic is routed to your account from clients over the internet. Route-specific endpoints are new endpoints that Azure Storage creates for your storage account. These endpoints route traffic over a desired path without changing your default routing preference. To learn more, see Network routing preference for Azure Storage.

Configure the routing preference for the default public endpoint

By default, the routing preference for the public endpoint of the storage account is set to Microsoft global network. You can choose between the Microsoft global network and Internet routing as the default routing preference for the public endpoint of your storage account. To learn more about the difference between these two types of routing, see Network routing preference for Azure Storage.

Warning

If your storage account contains or will contain Azure file shares, don't change your routing preference to Internet routing. The default option, Microsoft routing, works with all Azure Files configurations. The Internet routing option doesn't support AD domain join scenarios or Azure File Sync.

To change your routing preference to Internet routing:

  1. Sign in to the Azure portal.

  2. Navigate to your storage account in the portal.

  3. Under Security + networking, choose Networking.

  4. In the Network routing tab, under Routing preference setting to Internet routing.

  5. Click Save.

    [!div class="mx-imgBorder"] internet routing option

  1. Sign in to your Azure subscription with the Connect-AzAccount command and follow the on-screen directions to authenticate.

    Connect-AzAccount
  2. If your identity is associated with more than one subscription, then set your active subscription to subscription of the storage account that will host your static website.

    $context = Get-AzSubscription -SubscriptionId <subscription-id>
    Set-AzContext $context

    Replace the <subscription-id> placeholder value with the ID of your subscription.

  3. To change your routing preference to Internet routing, use the Set-AzStorageAccount command and set the --routing-choice parameter to InternetRouting.

    Set-AzStorageAccount -ResourceGroupName <resource-group-name> `
     -AccountName <storage-account-name> `
     -RoutingChoice InternetRouting

    Replace the <resource-group-name> placeholder value with the name of the resource group that contains the storage account.

    Replace the <storage-account-name> placeholder value with the name of the storage account.

  1. Sign in to your Azure subscription.

    • To launch Azure Cloud Shell, sign in to the Azure portal.

    • To log into your local installation of the CLI, run the az login command:

      az login
      
  2. If your identity is associated with more than one subscription, then set your active subscription to subscription of the storage account that will host your static website.

    az account set --subscription <subscription-id>
    

    Replace the <subscription-id> placeholder value with the ID of your subscription.

  3. To change your routing preference to Internet routing, use the az storage account update command and set the --routing-choice parameter to InternetRouting.

    az storage account update --name <storage-account-name> --routing-choice InternetRouting
    

    Replace the <storage-account-name> placeholder value with the name of your storage account.


Configure a route-specific endpoint

You can also configure a route-specific endpoint. For example, you can set the routing preference for the default endpoint to Internet routing, and then publish a route-specific endpoint that enables traffic between clients on the internet and your storage account to be routed via the Microsoft global network.

This preference affects only the route-specific endpoint. This preference doesn't affect your default routing preference.

  1. Navigate to your storage account in the portal.

  2. Under Security + networking, choose Networking.

  3. In the Network routing tab, under Publish route-specific endpoints, choose the routing preference of your route-specific endpoint, and then click Save.

    The following image shows the Microsoft network routing option selected.

    [!div class="mx-imgBorder"] Microsoft network routing option

  1. To configure a route-specific endpoint, use the Set-AzStorageAccount command.

    • To create a route-specific endpoint that uses the Microsoft network routing preference, set the -PublishMicrosoftEndpoint parameter to true.

    • To create a route-specific endpoint that uses the Internet routing preference, set the -PublishInternetEndpoint parameter to true.

    The following example creates a route-specific endpoint that uses the Microsoft network routing preference.

    Set-AzStorageAccount -ResourceGroupName <resource-group-name> `
     -AccountName <storage-account-name> `
     -PublishMicrosoftEndpoint $true

    Replace the <resource-group-name> placeholder value with the name of the resource group that contains the storage account.

    Replace the <storage-account-name> placeholder value with the name of the storage account.

  1. To configure a route-specific endpoint, use the az storage account update command.

    • To create a route-specific endpoint that uses the Microsoft network routing preference, set the --publish-microsoft-endpoints parameter to true.

    • To create a route-specific endpoint that uses the Internet routing preference, set the --publish-internet-endpoints parameter to true.

    The following example creates a route-specific endpoint that uses the Microsoft network routing preference.

    az storage account update --name <storage-account-name> --publish-microsoft-endpoints true
    

    Replace the <storage-account-name> placeholder value with the name of the storage account.


Find the endpoint name for a route-specific endpoint

If you configured a route-specific endpoint, you can find the endpoint in the properties of you storage account.

  1. Under Settings, choose Endpoints.

  2. The Microsoft network routing endpoint is shown for each service that supports routing preferences. This image shows the endpoint for the blob and file services.

    [!div class="mx-imgBorder"] Microsoft network routing option for route-specific endpoints

  1. To print the endpoints to the console, use the PrimaryEndpoints property of the storage account object.

    Get-AzStorageAccount -ResourceGroupName <resource-group-name> -Name <storage-account-name>
    write-Output $StorageAccount.PrimaryEndpoints

    Replace the <resource-group-name> placeholder value with the name of the resource group that contains the storage account.

    Replace the <storage-account-name> placeholder value with the name of the storage account.

  1. To print the endpoints to the console, use the az storage account show property of the storage account object.

    az storage account show -g <resource-group-name> -n <storage-account-name>
    

    Replace the <resource-group-name> placeholder value with the name of the resource group that contains the storage account.

    Replace the <storage-account-name> placeholder value with the name of the storage account.


See also