Skip to content

Commit 2063b73

Browse files
committed
Removed old articles, created redirects, acrolinx
1 parent 03b8a3b commit 2063b73

7 files changed

+57
-918
lines changed

articles/load-balancer/.openpublishing.redirection.load-balancer.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,21 @@
394394
"source_path_from_root": "/articles/load-balancer/tutorial-gateway-powershell.md",
395395
"redirect_url": "/azure/load-balancer/tutorial-create-gateway-load-balancer",
396396
"redirect_document_id": false
397+
},
398+
{
399+
"source_path_from_root": "/articles/load-balancer/virtual-network-ipv4-ipv6-dual-stack-standard-load-balancer-powershell.md",
400+
"redirect_url": "/azure/load-balancer/deploy-ipv4-ipv6-dual-stack-standard-load-balancer",
401+
"redirect_document_id": false
402+
},
403+
{
404+
"source_path_from_root": "/articles/load-balancer/virtual-network-ipv4-ipv6-dual-stack-standard-load-balancer-cli.md",
405+
"redirect_url": "/azure/load-balancer/deploy-ipv4-ipv6-dual-stack-standard-load-balancer",
406+
"redirect_document_id": false
407+
},
408+
{
409+
"source_path_from_root": "/articles/load-balancer/articles/load-balancer/ipv6-configure-standard-load-balancer-template-json.md",
410+
"redirect_url": "/azure/load-balancer/deploy-ipv4-ipv6-dual-stack-standard-load-balancer",
411+
"redirect_document_id": false
397412
}
398413
]
399414
}

articles/load-balancer/deploy-ipv4-ipv6-dual-stack-standard-load-balancer.md

Lines changed: 42 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: template-how-to, devx-track-azurecli, devx-track-azurepowershell, dev
1212

1313
# Deploy IPv6 dual stack application with Azure Load Balancer
1414

15-
This article shows you how to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure that includes a dual stack virtual network with a dual stack subnet, a Standard Load Balancer with dual (IPv4 + IPv6) frontend configurations, VMs with NICs that have a dual IP configuration, dual network security group rules, and dual public IPs.
15+
This article shows you how to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure. The scenario includes a dual stack virtual network with a dual stack subnet, a Standard Load Balancer with dual (IPv4 + IPv6) frontend configurations, VMs with NICs that have a dual IP configuration, dual network security group rules, and dual public IPs.
1616

1717
## Prerequisites
1818

@@ -32,7 +32,9 @@ This article shows you how to deploy a dual stack (IPv4 + IPv6) application usin
3232

3333
---
3434

35-
## Deploy IPv6 dual stack application
35+
## Deploy a dual stack (IPv4 + IPv6) application
36+
37+
Follow these instructions in Azure PowerShell to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure.
3638

3739
# [Azure PowerShell](#tab/azurepowershell/)
3840

@@ -107,7 +109,7 @@ $frontendIPv6 = New-AzLoadBalancerFrontendIpConfig `
107109

108110
### Configure backend address pool
109111

110-
Create a backend address pool with [New-AzLoadBalancerBackendAddressPoolConfig](/powershell/module/az.network/new-azloadbalancerbackendaddresspoolconfig). The VMs attach to this backend pool in the remaining steps. The following example creates backend address pools named *dsLbBackEndPool_v4* and *dsLbBackEndPool_v6* to include VMs with both IPV4 and IPv6 NIC configurations:
112+
Create a backend address pool with [New-AzLoadBalancerBackendAddressPoolConfig](/powershell/module/az.network/new-azloadbalancerbackendaddresspoolconfig) for the virtual machines deployed later. The following example creates backend address pools named *dsLbBackEndPool_v4* and *dsLbBackEndPool_v6* to include virtual machines with both IPV4 and IPv6 NIC configurations:
111113

112114
```azurepowershell-interactive
113115
$backendPoolv4 = New-AzLoadBalancerBackendAddressPoolConfig `
@@ -165,6 +167,7 @@ $lb = New-AzLoadBalancer `
165167

166168
## Create network resources
167169
Before you deploy some VMs and can test your balancer, you must create supporting network resources - availability set, network security group, virtual network, and virtual NICs.
170+
168171
### Create an availability set
169172
To improve the high availability of your app, place your VMs in an availability set.
170173

@@ -182,7 +185,7 @@ $avset = New-AzAvailabilitySet `
182185

183186
### Create network security group
184187

185-
Create a network security group for the rules that govern inbound and outbound communication in your VNET.
188+
Create a network security group for the rules that govern inbound and outbound communication in your virtual network.
186189

187190
#### Create a network security group rule for port 3389
188191

@@ -315,6 +318,7 @@ $VM2 = New-AzVM -ResourceGroupName $rg.ResourceGroupName -Location $rg.Location
315318
```
316319

317320
## Determine IP addresses of the IPv4 and IPv6 endpoints
321+
318322
Get all Network Interface Objects in the resource group to summarize the IPs used in this deployment with `get-AzNetworkInterface`. Also, get the Load Balancer's frontend addresses of the IPv4 and IPv6 endpoints with `get-AzpublicIpAddress`.
319323

320324
```azurepowershell-interactive
@@ -353,9 +357,24 @@ The following figure shows a sample output that lists the private IPv4 and IPv6
353357

354358
![IP summary of dual stack (IPv4/IPv6) application deployment in Azure](./media/virtual-network-ipv4-ipv6-dual-stack-powershell/dual-stack-application-summary.png)
355359

360+
## View IPv6 dual stack virtual network in Azure portal
361+
362+
You can view the IPv6 dual stack virtual network in Azure portal as follows:
363+
1. In the portal's search bar, enter *dsVnet*.
364+
2. When **dsVnet** appears in the search results, select it. This launches the **Overview** page of the dual stack virtual network named *dsVnet*. The dual stack virtual network shows the two NICs with both IPv4 and IPv6 configurations located in the dual stack subnet named *dsSubnet*.
365+
366+
## Clean up resources
367+
368+
When no longer needed, you can use the [Remove-AzResourceGroup](/powershell/module/az.resources/remove-azresourcegroup) command to remove the resource group, VM, and all related resources.
369+
370+
```azurepowershell-interactive
371+
Remove-AzResourceGroup -Name dsRG1
372+
```
356373

357374
# [Azure CLI](#tab/azurecli/)
358375

376+
Follow these instructions in Azure CLI to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure.
377+
359378
## Create a resource group
360379

361380
Before you can create your dual-stack virtual network, you must create a resource group with [az group create](/cli/azure/group). The following example creates a resource group named *DsResourceGroup01* in the *eastus* location:
@@ -512,7 +531,7 @@ az vm availability-set create \
512531

513532
### Create network security group
514533

515-
Create a network security group for the rules that govern inbound and outbound communication in your VNet.
534+
Create a network security group for the rules that govern inbound and outbound communication in your virtual network.
516535

517536
#### Create a network security group
518537

@@ -681,9 +700,23 @@ az vm create \
681700
--image MicrosoftWindowsServer:WindowsServer:2019-Datacenter:latest
682701
```
683702

703+
## View IPv6 dual stack virtual network in Azure portal
704+
705+
You can view the IPv6 dual stack virtual network in Azure portal as follows:
706+
1. In the portal's search bar, enter *dsVnet*.
707+
2. When **myVirtualNetwork** appears in the search results, select it. This launches the **Overview** page of the dual stack virtual network named *dsVnet*. The dual stack virtual network shows the two NICs with both IPv4 and IPv6 configurations located in the dual stack subnet named *dsSubnet*.
708+
709+
## Clean up resources
710+
711+
When no longer needed, you can use the [az group delete](/cli/azure/group#az-group-delete) command to remove the resource group, VM, and all related resources.
712+
713+
```azurecli-interactive
714+
az group delete --name DsResourceGroup01
715+
```
716+
684717
# [ARM template](#tab/arm-template/)
685718

686-
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) frontend configurations, VMs with NICs that have a dual IP configuration, network security group, and public IPs.
719+
Use the template described in this article to deploy a dual stack (IPv4 + IPv6) application using Standard Load Balancer in Azure.
687720

688721
## Required configurations
689722

@@ -844,12 +877,7 @@ If you're using a network virtual appliance, add IPv6 routes in the Route Table.
844877
To deploy an IPv6 dual stack application in Azure virtual network using Azure Resource Manager template, view sample template [here](https://azure.microsoft.com/resources/templates/ipv6-in-vnet-stdlb/).
845878
---
846879

880+
## Next steps
847881

848-
## View IPv6 dual stack virtual network in Azure portal
849-
850-
851-
852-
## Clean up resources
853-
854-
855-
## Next steps
882+
> [!div class="nextstepaction"]
883+
> [What is IPv6 for Azure Virtual Network?](../virtual-network/ip-services/ipv6-overview.md)

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

Lines changed: 0 additions & 180 deletions
This file was deleted.

articles/load-balancer/ipv6-dual-stack-standard-internal-load-balancer-powershell.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,6 @@ You can view the IPv6 dual stack virtual network in Azure portal as follows:
301301
1. In the portal's search bar, enter *dsVnet*.
302302
2. When **dsVnet** appears in the search results, select it. This launches the **Overview** page of the dual stack virtual network named *dsVnet*. The dual stack virtual network shows the two NICs with both IPv4 and IPv6 configurations located in the dual stack subnet named *dsSubnet*.
303303

304-
![IPv6 Dual Stack Virtual Network with Standard Internal Load Balancer](./media/ipv6-dual-stack-standard-internal-load-balancer-powershell/ipv6-dual-stack-virtual-network.png)
305-
306304

307305
> [!NOTE]
308306
> The IPv6 for Azure virtual network is available in the Azure portal in read-only for this preview release.

0 commit comments

Comments
 (0)