title | titlesuffix | description | services | documentationcenter | author | manager | ms.service | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|
Add, change, or delete an Azure virtual network subnet |
Azure Virtual Network |
Learn where to find information about virtual networks and how to add, change, or delete a virtual network subnet in Azure. |
virtual-network |
na |
mbender-ms |
mtillman |
virtual-network |
how-to |
na |
infrastructure-services |
03/20/2020 |
mbender |
Learn how to add, change, or delete a virtual network subnet. All Azure resources deployed into a virtual network are deployed into a subnet within a virtual network. If you're new to virtual networks, you can learn more about them in the Virtual network overview or by completing a quickstart. To learn more about managing a virtual network, see Create, change, or delete a virtual network.
If you don't have one, set up an Azure account with an active subscription. Create an account for free. Then complete one of these tasks before starting steps in any section of this article:
-
Portal users: Sign in to the Azure portal with your Azure account.
-
PowerShell users: Either run the commands in the Azure Cloud Shell, or run PowerShell from your computer. The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article. It has common Azure tools preinstalled and configured to use with your account. In the Azure Cloud Shell browser tab, find the Select environment dropdown list, then choose PowerShell if it isn't already selected.
If you're running PowerShell locally, use Azure PowerShell module version 1.0.0 or later. Run
Get-Module -ListAvailable Az.Network
to find the installed version. If you need to upgrade, see Install Azure PowerShell module. Also runConnect-AzAccount
to create a connection with Azure. -
Azure CLI users: Run the commands via either the Azure Cloud Shell the Azure CLI running locally. Use Azure CLI version 2.0.31 or later if you're running the Azure CLI locally. Run
az --version
to find the installed version. If you need to install or upgrade, see Install Azure CLI. Also runaz login
to create a connection with Azure.
The account you sign in to, or connect to Azure with, must be assigned to the Network contributor role role or to a Custom role that's assigned the appropriate actions listed in Permissions.
-
Go to the Azure portal to view your virtual networks. Search for and select Virtual networks.
-
Select the name of the virtual network you want to add a subnet to.
-
From Settings, select Subnets > Subnet.
-
In the Add subnet dialog box, enter values for the following settings:
Setting Description Name The name must be unique within the virtual network. For maximum compatibility with other Azure services, we recommend using a letter as the first character of the name. For example, Azure Application Gateway won't deploy into a subnet that has a name that starts with a number. Address range The range must be unique within the address space for the virtual network. The range can't overlap with other subnet address ranges within the virtual network. The address space must be specified by using Classless Inter-Domain Routing (CIDR) notation.
For example, in a virtual network with address space 10.0.0.0/16, you might define a subnet address space of 10.0.0.0/22. The smallest range you can specify is /29, which provides eight IP addresses for the subnet. Azure reserves the first and last address in each subnet for protocol conformance. Three additional addresses are reserved for Azure service usage. As a result, defining a subnet with a /29 address range results in three usable IP addresses in the subnet.
If you plan to connect a virtual network to a VPN gateway, you must create a gateway subnet. Learn more about specific address range considerations for gateway subnets. You can change the address range after the subnet is added, under specific conditions. To learn how to change a subnet address range, see Change subnet settings.
Network security group To filter inbound and outbound network traffic for the subnet, you may associate an existing network security group to a subnet. The network security group must exist in the same subscription and location as the virtual network. Learn more about network security groups and how to create a network security group. Route table To control network traffic routing to other networks, you may optionally associate an existing route table to a subnet. The route table must exist in the same subscription and location as the virtual network. Learn more about Azure routing and how to create a route table. Service endpoints A subnet may optionally have one or more service endpoints enabled for it. To enable a service endpoint for a service, select the service or services that you want to enable service endpoints for from the Services list. Azure configures the location automatically for an endpoint. By default, Azure configures the service endpoints for the virtual network's region. To support regional failover scenarios, Azure automatically configures endpoints to Azure paired regions for Azure Storage.
To remove a service endpoint, unselect the service you want to remove the service endpoint for. To learn more about service endpoints, and the services they can be enabled for, see Virtual network service endpoints. Once you enable a service endpoint for a service, you must also enable network access for the subnet for a resource created with the service. For example, if you enable the service endpoint for Microsoft.Storage, you must also enable network access to all Azure Storage accounts you want to grant network access to. To enable network access to subnets that a service endpoint is enabled for, see the documentation for the individual service you enabled the service endpoint for.
To validate that a service endpoint is enabled for a subnet, view the effective routes for any network interface in the subnet. When you configure an endpoint, you see a default route with the address prefixes of the service, and a next hop type of VirtualNetworkServiceEndpoint. To learn more about routing, see Virtual network traffic routing.
Subnet delegation A subnet may optionally have one or more delegations enabled for it. Subnet delegation gives explicit permissions to the service to create service-specific resources in the subnet using a unique identifier during service deployment. To delegate for a service, select the service you want to delegate to from the Services list. -
To add the subnet to the virtual network that you selected, select OK.
Tool | Command |
---|---|
Azure CLI | az network vnet subnet create |
PowerShell | Add-AzVirtualNetworkSubnetConfig |
-
Go to the Azure portal to view your virtual networks. Search for and select Virtual networks.
-
Select the name of the virtual network containing the subnet you want to change.
-
From Settings, select Subnets.
-
In the list of subnets, select the subnet you want to change settings for.
-
In the subnet page, change any of the following settings:
Setting Description Address range If no resources are deployed within the subnet, you can change the address range. If any resources exist in the subnet, you must either move the resources to another subnet, or delete them from the subnet first. The steps you take to move or delete a resource vary depending on the resource. To learn how to move or delete resources that are in subnets, read the documentation for each of those resource types. See the constraints for Address range in step 4 of Add a subnet. Users You can control access to the subnet by using built-in roles or your own custom roles. Access Mangage Users by selecting the ellipse (...) to the right of the Route table column. To learn more about assigning roles and users to access the subnet, see Assign Azure roles. Network security group and Route table See step 4 of Add a subnet. Service endpoints See service endpoints in step 4 of Add a subnet. When enabling a service endpoint for an existing subnet, ensure that no critical tasks are running on any resource in the subnet. Service endpoints switch routes on every network interface in the subnet. The service endpoints go from using the default route with the 0.0.0.0/0 address prefix and next hop type of Internet, to using a new route with the address prefixes of the service and a next hop type of VirtualNetworkServiceEndpoint.
During the switch, any open TCP connections may be terminated. The service endpoint isn't enabled until traffic flows to the service for all network interfaces are updated with the new route. To learn more about routing, see Virtual network traffic routing.
Subnet delegation See service endpoints in step 4 of Add a subnet. Subnet delegation can be modified to zero or multiple delegations enabled for it. If a resource for a service is already deployed in the subnet, subnet delegation can't be added or removed until all the resources for the service are removed. To delegate for a different service, select the service you want to delegate to from the Services list. -
Select Save.
Tool | Command |
---|---|
Azure CLI | az network vnet subnet update |
PowerShell | Set-AzVirtualNetworkSubnetConfig |
You can delete a subnet only if there are no resources in the subnet. If resources are in the subnet, you must delete those resources before you can delete the subnet. The steps you take to delete a resource vary depending on the resource. To learn how to delete resources that are in subnets, read the documentation for each of those resource types.
-
Go to the Azure portal to view your virtual networks. Search for and select Virtual networks.
-
Select the name of the virtual network containing the subnet you want to delete.
-
From Settings, select Subnets.
-
In the list of subnets, select the subnet you want to delete.
-
Select Delete, and then select Yes in the confirmation dialog box.
Tool | Command |
---|---|
Azure CLI | az network vnet subnet delete |
PowerShell | Remove-AzVirtualNetworkSubnetConfig |
To do tasks on subnets, your account must be assigned to the Network contributor role or to a Custom role that's assigned the appropriate actions in the following table:
Action | Name |
---|---|
Microsoft.Network/virtualNetworks/subnets/read | Read a virtual network subnet |
Microsoft.Network/virtualNetworks/subnets/write | Create or update a virtual network subnet |
Microsoft.Network/virtualNetworks/subnets/delete | Delete a virtual network subnet |
Microsoft.Network/virtualNetworks/subnets/join/action | Join a virtual network |
Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action | Enable a service endpoint for a subnet |
Microsoft.Network/virtualNetworks/subnets/virtualMachines/read | Get the virtual machines in a subnet |
- Create a virtual network and subnets using PowerShell or Azure CLI sample scripts, or using Azure Resource Manager templates
- Create and assign Azure Policy definitions for virtual networks