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
Copy file name to clipboardExpand all lines: articles/virtual-network/ipv6-add-to-existing-vnet-powershell.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,11 @@ ms.author: kumud
17
17
18
18
# Upgrade an IPv4 application to IPv6 in Azure virtual network - PowerShell (Preview)
19
19
20
-
This article shows you how to add IPv6 addresses to an application that is using IPv4 public IP address in an Azure virtual network for a Standard Load Balancer. The in-place upgrade includes a virtual network and subnet, a Standard Load Balancer with IPv4 + IPV6 frontend configurations, VMs with NICs that have a IPv4 + IPv6 configurations, network security group, and public IPs.
20
+
This article shows you how to add IPv6 connectivity to an existing IPv4 application in an Azure virtual network with a Standard Load Balancer and Public IP. The in-place upgrade includes:
21
+
- IPv6 address space for the virtual network and subnet
22
+
- a Standard Load Balancer with both IPv4 and IPV6 frontend configurations
23
+
- VMs with NICs that have both an IPv4 + IPv6 configuration
24
+
- IPv Public IP so the load balancer has Internet-facing IPv6 connectivity
21
25
22
26
> [!Important]
23
27
> IPv6 support for Azure Virtual Network is currently in public preview. This preview is provided without a service level agreement and is not recommended for production workloads. Certain features may not be supported or may have constrained capabilities. See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for details.
@@ -62,7 +66,7 @@ Before you can create your dual-stack virtual network, you must retrieve the res
62
66
63
67
## Create an IPv6 IP addresses
64
68
65
-
Create public IPv6 address with [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) for your Standard Load Balancer. The following example creates an IPv6 public IP address named *PublicIP_v6* in the *myResourceGroupSLB* resource group:
69
+
Create a public IPv6 address with [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) for your Standard Load Balancer. The following example creates an IPv6 public IP address named *PublicIP_v6* in the *myResourceGroupSLB* resource group:
66
70
67
71
```azurepowershell
68
72
@@ -77,7 +81,7 @@ Create public IPv6 address with [New-AzPublicIpAddress](/powershell/module/az.ne
77
81
78
82
## Configure load balancer frontend
79
83
80
-
Retrieve the existing load balancer configuration and then configure it with the new IPv6 IP address using [Add-AzLoadBalancerFrontendIpConfig](/powershell/module/az.network/Add-AzLoadBalancerFrontendIpConfig) as follows:
84
+
Retrieve the existing load balancer configuration and then add the new IPv6 IP address using [Add-AzLoadBalancerFrontendIpConfig](/powershell/module/az.network/Add-AzLoadBalancerFrontendIpConfig) as follows:
81
85
82
86
```azurepowershell
83
87
# Retrieve the load balancer configuration
@@ -120,7 +124,7 @@ $lb | Set-AzLoadBalancer
120
124
```
121
125
## Add IPv6 address ranges
122
126
123
-
Add IPv6 address ranges to the virtual network and subnet hosting the load balancer as follows:
127
+
Add IPv6 address ranges to the virtual network and subnet hosting the VMs as follows:
124
128
125
129
```azurepowershell
126
130
#Add IPv6 ranges to the VNET and subnet
@@ -141,7 +145,7 @@ $vnet | Set-AzVirtualNetwork
141
145
```
142
146
## Add IPv6 configuration to NIC
143
147
144
-
Configure both of the VM NICs with an IPv6 address using [Add-AzNetworkInterfaceIpConfig](/powershell/module/az.network/Add-AzNetworkInterfaceIpConfig) as follows:
148
+
Configure all of the VM NICs with an IPv6 address using [Add-AzNetworkInterfaceIpConfig](/powershell/module/az.network/Add-AzNetworkInterfaceIpConfig) as follows:
In this article, you updated an existing Standard Load Balancer with a IPv4 frontend IP configuration to a dual stack (IPv4 and IPv6) configuration. You also added IPv6 configurations to the NICs of the VMs in the backend pool. To learn more about IPv6 support in Azure virtual networks, see [What is IPv6 for Azure Virtual Network?](ipv6-overview.md)
188
+
In this article, you updated an existing Standard Load Balancer with a IPv4 frontend IP configuration to a dual stack (IPv4 and IPv6) configuration. You also added IPv6 configurations to the NICs of the VMs in the backend pool and to the Virtual Network that hosts them. To learn more about IPv6 support in Azure virtual networks, see [What is IPv6 for Azure Virtual Network?](ipv6-overview.md)
0 commit comments