Skip to content

Commit 0b99c97

Browse files
authored
Merge pull request #93641 from EricTheRed999/patch-4
Small fixes to PS IPv6-add
2 parents b608530 + be77f9b commit 0b99c97

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

articles/virtual-network/ipv6-add-to-existing-vnet-powershell.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ ms.author: kumud
1717

1818
# Upgrade an IPv4 application to IPv6 in Azure virtual network - PowerShell (Preview)
1919

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
2125

2226
> [!Important]
2327
> 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
6266

6367
## Create an IPv6 IP addresses
6468

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:
6670

6771
```azurepowershell
6872
@@ -77,7 +81,7 @@ Create public IPv6 address with [New-AzPublicIpAddress](/powershell/module/az.ne
7781

7882
## Configure load balancer frontend
7983

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:
8185

8286
```azurepowershell
8387
# Retrieve the load balancer configuration
@@ -120,7 +124,7 @@ $lb | Set-AzLoadBalancer
120124
```
121125
## Add IPv6 address ranges
122126

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:
124128

125129
```azurepowershell
126130
#Add IPv6 ranges to the VNET and subnet
@@ -141,7 +145,7 @@ $vnet | Set-AzVirtualNetwork
141145
```
142146
## Add IPv6 configuration to NIC
143147

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:
145149

146150
```azurepowershell
147151
@@ -181,4 +185,4 @@ Remove-AzResourceGroup -Name MyAzureResourceGroupSLB
181185

182186
## Next steps
183187

184-
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

Comments
 (0)