You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Enable integration with Azure virtual network.
3
-
description: This how-to article will walk you through enabling virtual network integration on an App Service Web App
2
+
title: Enable integration with an Azure virtual network
3
+
description: This how-to article walks you through enabling virtual network integration on an Azure App Service web app.
4
4
keywords: vnet integration
5
5
author: madsd
6
6
ms.author: madsd
@@ -10,47 +10,46 @@ ms.date: 10/20/2021
10
10
11
11
# Enable virtual network integration in Azure App Service
12
12
13
-
Through integrating with an Azure virtual network (VNet) from your [App Service app](./overview.md), you can reach private resources from your app within the virtual network. The VNet Integration feature has two variations:
13
+
Through integrating with an Azure virtual network (VNet) from your [Azure App Service app](./overview.md), you can reach private resources from your app within the virtual network. The VNet integration feature has two variations:
14
14
15
-
* Regional VNet integration: Connect to Azure virtual networks in the same region. You must have a dedicated subnet in the VNet you're integrating with.
16
-
* Gateway-required VNet integration: When you connect directly to VNet in other regions or to a classic virtual network in the same region, you must use the gateway-required VNet integration.
15
+
***Regional virtual network integration**: Connect to Azure virtual networks in the same region. You must have a dedicated subnet in the virtual network you're integrating with.
16
+
***Gateway-required virtual network integration**: When you connect directly to a virtual network in other regions or to a classic virtual network in the same region, you must use gateway-required virtual network integration.
17
17
18
-
This how-to article will describe how to set up regional VNet integration.
18
+
This article describes how to set up regional virtual network integration.
19
19
20
20
## Prerequisites
21
21
22
-
The VNet Integration requires:
23
-
- An App Service pricing tier [supporting VNet integration](./overview-vnet-integration.md).
22
+
The VNet integration feature requires:
23
+
24
+
- An App Service pricing tier [that supports virtual network integration](./overview-vnet-integration.md).
24
25
- A virtual network in the same region with an empty subnet.
25
26
26
-
The subnet must be delegated to Microsoft.Web/serverFarms. If the delegation isn't done before integration, the provisioning process will configure this delegation. The subnet must be allocated an IPv4 `/28` block (16 addresses). It is actually recommended to have a minimum of 64 addresses (IPv4 `/26` block) to allow for maximum horizontal scale.
27
+
The subnet must be delegated to Microsoft.Web/serverFarms. If the delegation isn't done before integration, the provisioning process will configure this delegation. The subnet must be allocated an IPv4 `/28` block (16 addresses). We recommend that you have a minimum of 64 addresses (IPv4 `/26` block) to allow for maximum horizontal scale.
27
28
28
29
## Configure in the Azure portal
29
30
30
-
1. Go to the **Networking** UI in the App Service portal. Under **Outbound Traffic**, select **VNet integration**.
31
+
1. Go to **Networking** in the App Service portal. Under **Outbound Traffic**, select **VNet integration**.
1. The drop-down list contains all of the virtual networks in your subscription in the same region.
35
+
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-app.png" alt-text="Screenshot that shows selecting VNet integration.":::
37
36
38
-
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-add-vnet.png" alt-text="Select the VNet":::
37
+
1. The dropdown list contains all the virtual networks in your subscription in the same region. Select an empty preexisting subnet or create a new subnet.
39
38
40
-
* Select an empty pre-existing subnet or create a new subnet.
39
+
:::image type="content" source="./media/configure-vnet-integration-enable/vnetint-add-vnet.png" alt-text="Screenshot that shows selecting the virtual network.":::
41
40
42
-
During the integration, your app is restarted. When integration is finished, you'll see details on the VNet you're integrated with.
41
+
During the integration, your app is restarted. When integration is finished, you'll see details on the virtual network you're integrated with.
43
42
44
-
## Configure with Azure CLI
43
+
## Configure with the Azure CLI
45
44
46
-
You can also configure VNet integration using Azure CLI:
45
+
You can also configure virtual network integration by using the Azure CLI:
> The command will check if subnet is delegated to Microsoft.Web/serverFarms and apply the necessary delegation if this is not configured. If this has already been configured, and you do not have permissions to check this, or the virtual network is in another subscription, you can use the `--skip-delegation-check` parameter to bypass the validation.
52
+
> The command checks if the subnet is delegated to Microsoft.Web/serverFarms and applies the necessary delegation if it isn't configured. If the subnet was configured, and you don't have permissions to check it, or if the virtual network is in another subscription, you can use the *--skip-delegation-check* parameter to bypass the validation.
Copy file name to clipboardExpand all lines: articles/app-service/configure-vnet-integration-routing.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Configure virtual network integration with application routing.
3
-
description: This how-to article will walk you through configure app routing on a regional VNet integration.
3
+
description: This how-to article walks you through configuring app routing on a regional virtual network integration.
4
4
author: madsd
5
5
ms.author: madsd
6
6
ms.topic: how-to
@@ -9,28 +9,28 @@ ms.date: 10/20/2021
9
9
10
10
# Manage Azure App Service virtual network integration routing
11
11
12
-
When configuring application routing, you can either route all traffic or only private traffic (also known as [RFC1918](https://datatracker.ietf.org/doc/html/rfc1918#section-3) traffic) into your Azure virtual network (VNet). This how-to article will describe how to configure application routing.
12
+
When you configure application routing, you can either route all traffic or only private traffic (also known as [RFC1918](https://datatracker.ietf.org/doc/html/rfc1918#section-3) traffic) into your Azure virtual network (VNet). This article describes how to configure application routing.
13
13
14
14
## Prerequisites
15
15
16
16
Your app is already integrated using the regional VNet integration feature.
17
17
18
18
## Configure in the Azure portal
19
19
20
-
You can use the following steps to disable Route All in your app through the portal:
20
+
Follow these steps to disable **Route All** in your app through the portal.
21
21
22
-
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-enabled.png" alt-text="Route All enabled":::
22
+
:::image type="content" source="./media/configure-vnet-integration-routing/vnetint-route-all-enabled.png" alt-text="Screenshot that shows enabling Route All.":::
23
23
24
-
1. Go to the **Networking** > **VNet integration** UI in your app portal.
25
-
1. Set **Route All** to Disabled.
24
+
1. Go to **Networking** > **VNet integration** in your app portal.
0 commit comments