Skip to content

Commit 65a0aba

Browse files
authored
Merge pull request #109599 from KumudD/newipv6ga
IPv6 - GA
2 parents 25be992 + 5ae2aa4 commit 65a0aba

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

articles/virtual-network/ipv6-configure-standard-load-balancer-template-json.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy an IPv6 dual stack application in Azure virtual network - Resource Manger template (preview)
2+
title: Deploy an IPv6 dual stack application in Azure virtual network - Resource Manger template
33
titlesuffix: Azure Virtual Network
44
description: This article shows how to deploy an IPv6 dual stack application with Standard Load Balancer in Azure virtual network using Azure Resource Manager VM templates.
55
services: virtual-network
@@ -10,11 +10,11 @@ ms.service: virtual-network
1010
ms.devlang: NA
1111
ms.topic: article
1212
ms.workload: infrastructure-services
13-
ms.date: 07/15/2019
13+
ms.date: 04/01/2020
1414
ms.author: kumud
1515
---
1616

17-
# Deploy an IPv6 dual stack application in Azure virtual network - Template (Preview)
17+
# Deploy an IPv6 dual stack application in Azure virtual network - Template
1818

1919
This article provides a list of IPv6 configuration tasks with the portion of the Azure Resource Manager VM template that applies to. Use the template described in this article to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure that includes a dual stack virtual network with IPv4 and IPv6 subnets, a Standard Load Balancer with dual (IPv4 + IPv6) front-end configurations, VMs with NICs that have a dual IP configuration, network security group, and public IPs.
2020

@@ -53,7 +53,7 @@ Template section to add:
5353
"name": "ipconfig-v6",
5454
"properties": {
5555
"privateIPAllocationMethod": "Dynamic",
56-
"privateIPAddressVersion":"IPv6",
56+
"privateIPAddressVersion":"IPv6",
5757
"subnet": {
5858
"id": "[variables('v6-subnet-id')]"
5959
},
@@ -118,7 +118,7 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
118118
### IPv6 Public IP addresses
119119

120120
```JSON
121-
{
121+
{
122122
"apiVersion": "[variables('ApiVersion')]",
123123
"type": "Microsoft.Network/publicIPAddresses",
124124
"name": "lbpublicip-v6",
@@ -128,14 +128,14 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
128128
},
129129
"properties": {
130130
"publicIPAllocationMethod": "Static",
131-
"publicIPAddressVersion": "IPv6"
131+
"publicIPAddressVersion": "IPv6"
132132
}
133133
```
134134

135135
### IPv6 Front end for Load Balancer
136136

137137
```JSON
138-
{
138+
{
139139
"name": "LBFE-v6",
140140
"properties": {
141141
"publicIPAddress": {
@@ -163,7 +163,7 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
163163
"name": "ipconfig-v6",
164164
"properties": {
165165
"privateIPAllocationMethod": "Dynamic",
166-
"privateIPAddressVersion":"IPv6",
166+
"privateIPAddressVersion":"IPv6",
167167
"subnet": {
168168
"id": "[variables('v6-subnet-id')]"
169169
},

articles/virtual-network/ipv6-configure-template-json.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploy an IPv6 dual stack application with Basic Load Balancer in Azure virtual network - Resource Manger template (preview)
2+
title: Deploy an IPv6 dual stack application with Basic Load Balancer in Azure virtual network - Resource Manger template
33
titlesuffix: Azure Virtual Network
44
description: This article shows how to deploy an IPv6 dual stack application in Azure virtual network using Azure Resource Manager VM templates.
55
services: virtual-network
@@ -10,11 +10,11 @@ ms.service: virtual-network
1010
ms.devlang: NA
1111
ms.topic: article
1212
ms.workload: infrastructure-services
13-
ms.date: 06/26/2019
13+
ms.date: 04/01/2020
1414
ms.author: kumud
1515
---
1616

17-
# Deploy an IPv6 dual stack application with Basic Load Balancer in Azure - Template (Preview)
17+
# Deploy an IPv6 dual stack application with Basic Load Balancer in Azure - Template
1818

1919
This article provides a list of IPv6 configuration tasks with the portion of the Azure Resource Manager VM template that applies to. Use the template described in this article to deploy a dual stack (IPv4 + IPv6) application with Basic Load Balancer that includes a dual stack virtual network with IPv4 and IPv6 subnets, a Basic Load Balancer with dual (IPv4 + IPv6) front-end configurations, VMs with NICs that have a dual IP configuration, network security group, and public IPs.
2020

@@ -55,7 +55,7 @@ Template section to add:
5555
"name": "ipconfig-v6",
5656
"properties": {
5757
"privateIPAllocationMethod": "Dynamic",
58-
"privateIPAddressVersion":"IPv6",
58+
"privateIPAddressVersion":"IPv6",
5959
"subnet": {
6060
"id": "[variables('v6-subnet-id')]"
6161
},
@@ -120,21 +120,21 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
120120
### IPv6 Public IP addresses
121121

122122
```JSON
123-
{
123+
{
124124
"apiVersion": "[variables('ApiVersion')]",
125125
"type": "Microsoft.Network/publicIPAddresses",
126126
"name": "lbpublicip-v6",
127127
"location": "[resourceGroup().location]",
128128
"properties": {
129129
"publicIPAllocationMethod": "Dynamic",
130-
"publicIPAddressVersion": "IPv6"
130+
"publicIPAddressVersion": "IPv6"
131131
}
132132
```
133133

134134
### IPv6 Front end for Load Balancer
135135

136136
```JSON
137-
{
137+
{
138138
"name": "LBFE-v6",
139139
"properties": {
140140
"publicIPAddress": {
@@ -162,7 +162,7 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
162162
"name": "ipconfig-v6",
163163
"properties": {
164164
"privateIPAllocationMethod": "Dynamic",
165-
"privateIPAddressVersion":"IPv6",
165+
"privateIPAddressVersion":"IPv6",
166166
"subnet": {
167167
"id": "[variables('v6-subnet-id')]"
168168
},

articles/virtual-network/ipv6-virtual-machine-scale-set.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ ms.date: 10/29/2019
1515
ms.author: kumud
1616
---
1717

18-
# Deploy virtual machine scale sets with IPv6 in Azure (Preview)
18+
# Deploy virtual machine scale sets with IPv6 in Azure
1919

20-
This article shows you how to deploy a dual stack (IPv4 + IPv6) Virtual Machine Scale Set with a dual stack external load balancer in an Azure virtual network. The process to create an IPv6-capable virtual machine scale set is nearly identical to the process for creating individual VMs described [here](ipv6-configure-standard-load-balancer-template-json.md). Youll start with the steps that are similar to ones described for individual VMs:
21-
1. Create IPv4 and IPv6 Public IPs.
22-
2. Create a dual stack load balancer.
23-
3. Create network security group (NSG) rules.
20+
This article shows you how to deploy a dual stack (IPv4 + IPv6) Virtual Machine Scale Set with a dual stack external load balancer in an Azure virtual network. The process to create an IPv6-capable virtual machine scale set is nearly identical to the process for creating individual VMs described [here](ipv6-configure-standard-load-balancer-template-json.md). You'll start with the steps that are similar to ones described for individual VMs:
21+
1. Create IPv4 and IPv6 Public IPs.
22+
2. Create a dual stack load balancer.
23+
3. Create network security group (NSG) rules.
2424

25-
The only step that is different from individual VMs is creating the network interface (NIC) configuration that uses the virtual machine scale set resource: networkProfile/networkInterfaceConfigurations. The JSON structure is similar to that of the Microsoft.Network/networkInterfaces object used for individual VMs with the addition of setting the NIC and the IPv4 IpConfiguration as the primary interface using the **primary: true** attribute as seen in the following example:
25+
The only step that is different from individual VMs is creating the network interface (NIC) configuration that uses the virtual machine scale set resource: networkProfile/networkInterfaceConfigurations. The JSON structure is similar to that of the Microsoft.Network/networkInterfaces object used for individual VMs with the addition of setting the NIC and the IPv4 IpConfiguration as the primary interface using the **"primary": true** attribute as seen in the following example:
2626

2727
```json
2828
"networkProfile": {
@@ -31,9 +31,9 @@ The only step that is different from individual VMs is creating the network inte
3131
"name": "[variables('nicName')]",
3232
"properties": {
3333
"primary": true,
34-
"networkSecurityGroup": {
35-
"id": "[resourceId('Microsoft.Network/networkSecurityGroups','VmssNsg')]"
36-
},
34+
"networkSecurityGroup": {
35+
"id": "[resourceId('Microsoft.Network/networkSecurityGroups','VmssNsg')]"
36+
},
3737
"ipConfigurations": [
3838
{
3939
"name": "[variables('ipConfigName')]",

0 commit comments

Comments
 (0)