Skip to content

Commit 074086b

Browse files
committed
Cleaned up metadata and removed preview language and titles
1 parent 506b6ee commit 074086b

File tree

1 file changed

+10
-25
lines changed

1 file changed

+10
-25
lines changed

articles/virtual-network/scripts/virtual-network-powershell-sample-ipv6-dual-stack-standard-load-balancer.md

Lines changed: 10 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
---
2-
title: Azure PowerShell script sample - Configure IPv6 frontend with Standard Load Balancer (preview)
2+
title: Azure PowerShell script sample - Configure IPv6 frontend with an Azure Standard Load Balancer
33
titlesuffix: Azure Virtual Network
4-
description: Learn about configuring an IPv6 frontend in a virtual network script sample with Standard Load Balancer.
5-
services: virtual-network
4+
description: Learn about configuring an IPv6 frontend in a virtual network script sample with an Azure Standard Load Balancer.
65
author: asudbring
7-
ms.service: virtual-network
86
ms.topic: sample
9-
ms.workload: infrastructure-services
10-
ms.date: 07/15/2019
7+
ms.date: 04/04/2023
118
ms.author: allensu
129
ms.custom: devx-track-azurepowershell
1310
---
@@ -16,29 +13,17 @@ ms.custom: devx-track-azurepowershell
1613

1714
This article shows you how to deploy a dual stack (IPv4 + IPv6) application in Azure that includes a dual stack virtual network with a dual stack subnet, a load balancer with dual (IPv4 + IPv6) front-end configurations, VMs with NICs that have a dual IP configuration, dual network security group rules, and dual public IPs.
1815

19-
You can execute the script from the Azure [Cloud Shell](https://shell.azure.com/powershell), or from a local PowerShell installation. If you use PowerShell locally, this script requires the Azure Az PowerShell module version 1.0.0 or later. To find the installed version, run `Get-Module -ListAvailable Az`. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-az-ps). If you are running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
16+
## Prerequisites
2017

21-
[!INCLUDE [quickstarts-free-trial-note](../../../includes/quickstarts-free-trial-note.md)]
18+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2219

23-
## Prerequisites
24-
Before you deploy a dual stack application in Azure, you must configure your subscription only once for this preview feature using the following Azure PowerShell:
20+
- Azure PowerShell installed locally or Azure Cloud Shell.
2521

26-
Register as follows:
27-
```azurepowershell
28-
Register-AzProviderFeature -FeatureName AllowIPv6VirtualNetwork -ProviderNamespace Microsoft.Network
29-
Register-AzProviderFeature -FeatureName AllowIPv6CAOnStandardLB -ProviderNamespace Microsoft.Network
30-
```
31-
It takes up to 30 minutes for feature registration to complete. You can check your registration status by running the following Azure PowerShell command:
32-
Check on the registration as follows:
33-
```azurepowershell
34-
Get-AzProviderFeature -FeatureName AllowIPv6VirtualNetwork -ProviderNamespace Microsoft.Network
35-
Get-AzProviderFeature -FeatureName AllowIPv6CAOnStandardLB -ProviderNamespace Microsoft.Network
36-
```
37-
After the registration is complete, run the following command:
22+
- Sign in to Azure PowerShell and ensure you've selected the subscription with which you want to use this feature. For more information, see [Sign in with Azure PowerShell](/powershell/azure/authenticate-azureps).
3823

39-
```azurepowershell
40-
Register-AzResourceProvider -ProviderNamespace Microsoft.Network
41-
```
24+
- Ensure your `Az.Network` module is 4.3.0 or later. To verify the installed module, use the command Get-InstalledModule -Name "Az.Network". If the module requires an update, use the command `Update-Module -Name Az.Network` if necessary.
25+
26+
If you choose to install and use PowerShell locally, this article requires the Azure PowerShell module version 5.4.1 or later. Run `Get-Module -ListAvailable Az` to find the installed version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-Az-ps). If you're running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
4227

4328
## Sample script
4429

0 commit comments

Comments
 (0)