Skip to content

Commit 7d0e495

Browse files
committed
acrolinx
1 parent d5d837c commit 7d0e495

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ ms.author: allensu
77
ms.service: virtual-network
88
ms.subservice: ip-services
99
ms.topic: how-to
10-
ms.date: 08/11/2022
10+
ms.date: 04/19/2023
1111
ms.custom: template-how-to, devx-track-azurecli
1212
ms.devlang: azurecli
1313
---
1414

1515
# Create an Azure Virtual Machine with a dual-stack network using the Azure CLI
1616

17-
In this article, you'll create a virtual machine in Azure with the Azure CLI. The virtual machine is created along with the dual-stack network as part of the procedures. When completed, the virtual machine supports IPv4 and IPv6 communication.
17+
In this article, you create a virtual machine in Azure with the Azure CLI. The virtual machine is created along with the dual-stack network as part of the procedures. When completed, the virtual machine supports IPv4 and IPv6 communication.
1818

1919
## Prerequisites
2020

@@ -38,7 +38,7 @@ Create a resource group with [az group create](/cli/azure/group#az-group-create)
3838

3939
## Create a virtual network
4040

41-
In this section, you'll create a dual-stack virtual network for the virtual machine.
41+
In this section, you create a dual-stack virtual network for the virtual machine.
4242

4343
Use [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) to create a virtual network.
4444

@@ -54,7 +54,7 @@ Use [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) to
5454

5555
## Create public IP addresses
5656

57-
You'll create two public IP addresses in this section, IPv4 and IPv6.
57+
You create two public IP addresses in this section, IPv4 and IPv6.
5858

5959
Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create) to create the public IP addresses.
6060

@@ -76,7 +76,7 @@ Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public
7676
```
7777
## Create a network security group
7878

79-
In this section, you'll create a network security group for the virtual machine and virtual network.
79+
In this section, you create a network security group for the virtual machine and virtual network.
8080

8181
Use [az network nsg create](/cli/azure/network/nsg#az-network-nsg-create) to create the network security group.
8282

@@ -88,7 +88,7 @@ Use [az network nsg create](/cli/azure/network/nsg#az-network-nsg-create) to cre
8888

8989
### Create network security group rules
9090

91-
You'll create a rule to allow connections to the virtual machine on port 22 for SSH. An extra rule is created to allow all ports for outbound connections.
91+
You create a rule to allow connections to the virtual machine on port 22 for SSH. An extra rule is created to allow all ports for outbound connections.
9292

9393
Use [az network nsg rule create](/cli/azure/network/nsg/rule#az-network-nsg-rule-create) to create the network security group rules.
9494

@@ -122,11 +122,11 @@ Use [az network nsg rule create](/cli/azure/network/nsg/rule#az-network-nsg-rule
122122

123123
## Create virtual machine
124124

125-
In this section, you'll create the virtual machine and its supporting resources.
125+
In this section, you create the virtual machine and its supporting resources.
126126

127127
### Create network interface
128128

129-
You'll use [az network nic create](/cli/azure/network/nic#az-network-nic-create) to create the network interface for the virtual machine. The public IP addresses and the NSG created previously are associated with the NIC. The network interface is attached to the virtual network you created previously.
129+
You use [az network nic create](/cli/azure/network/nic#az-network-nic-create) to create the network interface for the virtual machine. The public IP addresses and the NSG created previously are associated with the NIC. The network interface is attached to the virtual network you created previously.
130130

131131
```azurecli-interactive
132132
az network nic create \

0 commit comments

Comments
 (0)