Skip to content

Commit c76f8b4

Browse files
author
Michael Bender
committed
acrolinx and redirects for deleted files
1 parent ab8db30 commit c76f8b4

File tree

4 files changed

+18
-261
lines changed

4 files changed

+18
-261
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4841,10 +4841,17 @@
48414841
"source_path_from_root": "/articles/event-grid/availability-zones-disaster-recovery.md",
48424842
"redirect_url": "/azure/reliability/reliability-event-grid",
48434843
"redirect_document_id": false
4844+
},
4845+
{
4846+
"source_path": "azure/virtual-network/ip-services/add-dual-stack-ipv6-vm-powershell.md",
4847+
"redirect_url": "azure/virtual-network/ip-services/add-dual-stack-ipv6-vm-portal",
4848+
"redirect_document_id": False
4849+
},
4850+
{
4851+
"source_path": "azure/virtual-network/ip-services/add-dual-stack-ipv6-vm-cli.md",
4852+
"redirect_url": "azure/virtual-network/ip-services/add-dual-stack-ipv6-vm-portal.md",
4853+
"redirect_document_id": False
48444854
}
4845-
4846-
4847-
48484855

48494856

48504857
]

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-cli.md

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

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-portal.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ ms.author: mbender
77
ms.service: virtual-network
88
ms.subservice: ip-services
99
ms.topic: how-to
10-
ms.date: 08/24/2023
11-
ms.custom: template-how-to
10+
ms.date: 07/24/2024
11+
ms.custom: template-how-to, powershell, cli
1212
---
1313

1414
# Add a dual-stack network to an existing virtual machine
1515

16-
In this article, you add IPv6 support to an existing virtual network. You configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network supports private IPv6 addresses. The existing virtual machine network configuration contains a public and private IPv4 and IPv6 address. You will choose from the Azure Portal, Azure CLI or Azure PowerShell to complete the steps in this article.
16+
In this article, you add IPv6 support to an existing virtual network. You configure an existing virtual machine with both IPv4 and IPv6 addresses. When completed, the existing virtual network supports private IPv6 addresses. The existing virtual machine network configuration contains a public and private IPv4 and IPv6 address. You choose from the Azure portal, Azure CLI, or Azure PowerShell to complete the steps in this article.
1717

1818
## Prerequisites
1919

2020
# [Azure portal](#tab/azureportal)
2121

2222
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2323

24-
- An existing virtual network, public IP address and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address and a virtual machine, see [Quickstart: Create a Linux virtual machine in the Azure portal](../../virtual-machines/linux/quick-create-portal.md).
24+
- An existing virtual network, public IP address, and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address, and a virtual machine, see [Quickstart: Create a Linux virtual machine in the Azure portal](../../virtual-machines/linux/quick-create-portal.md).
2525

2626
- The example virtual network used in this article is named **myVNet**. Replace this value with the name of your virtual network.
2727

@@ -37,7 +37,7 @@ In this article, you add IPv6 support to an existing virtual network. You config
3737

3838
- This tutorial requires version 2.0.28 or later of the Azure CLI. If using Azure Cloud Shell, the latest version is already installed.
3939

40-
- An existing virtual network, public IP address and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address and a virtual machine, see [Quickstart: Create a Linux virtual machine with the Azure CLI](../../virtual-machines/linux/quick-create-cli.md).
40+
- An existing virtual network, public IP address, and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address, and a virtual machine, see [Quickstart: Create a Linux virtual machine with the Azure CLI](../../virtual-machines/linux/quick-create-cli.md).
4141

4242
- The example virtual network used in this article is named **myVNet**. Replace this value with the name of your virtual network.
4343

@@ -53,7 +53,7 @@ In this article, you add IPv6 support to an existing virtual network. You config
5353

5454
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-azure-powershell). If you're running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
5555

56-
- An existing virtual network, public IP address and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address and a virtual machine, see [Quickstart: Create a Linux virtual machine in Azure with PowerShell](../../virtual-machines/linux/quick-create-powershell.md).
56+
- An existing virtual network, public IP address, and virtual machine in your subscription that is configured for IPv4 support only. For more information about creating a virtual network, public IP address, and a virtual machine, see [Quickstart: Create a Linux virtual machine in Azure with PowerShell](../../virtual-machines/linux/quick-create-powershell.md).
5757

5858
- The example virtual network used in this article is named **myVNet**. Replace this value with the name of your virtual network.
5959

@@ -262,7 +262,7 @@ The virtual machine must be stopped to add the IPv6 configuration to the existin
262262

263263
# [Azure CLI](#tab/azurecli/)
264264

265-
Use [az network nic ip-config create](/cli/azure/network/nic/ip-config#az-network-nic-ip-config-create) to create the IPv6 configuration for the NIC. The **`--nic-name`** used in the example is **myvm569**. Replace this value with the name of the network interface in your virtual machine.
265+
Use [az network nic ip-config create](/cli/azure/network/nic/ip-config#az-network-nic-ip-config-create) to create the IPv6 configuration for the network interface. The **`--nic-name`** used in the example is **myvm569**. Replace this value with the name of the network interface in your virtual machine.
266266

267267
```azurecli-interactive
268268
az network nic ip-config create \
@@ -278,7 +278,7 @@ Use [az network nic ip-config create](/cli/azure/network/nic/ip-config#az-networ
278278

279279
# [Azure PowerShell](#tab/azurepowershell/)
280280

281-
Use [New-AzNetworkInterfaceIpConfig](/powershell/module/az.network/new-aznetworkinterfaceipconfig) to create the IPv6 configuration for the NIC. The **`-Name`** used in the example is **myvm569**. Replace this value with the name of the network interface in your virtual machine.
281+
Use [New-AzNetworkInterfaceIpConfig](/powershell/module/az.network/new-aznetworkinterfaceipconfig) to create the IPv6 configuration for the network interface. The **`-Name`** used in the example is **myvm569**. Replace this value with the name of the network interface in your virtual machine.
282282

283283
```azurepowershell-interactive
284284
## Place your virtual network into a variable. ##

articles/virtual-network/ip-services/add-dual-stack-ipv6-vm-powershell.md

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

0 commit comments

Comments
 (0)