You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-network/ip-services/create-vm-dual-stack-ipv6-cli.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ ms.author: allensu
7
7
ms.service: virtual-network
8
8
ms.subservice: ip-services
9
9
ms.topic: how-to
10
-
ms.date: 08/11/2022
10
+
ms.date: 04/19/2023
11
11
ms.custom: template-how-to, devx-track-azurecli
12
12
ms.devlang: azurecli
13
13
---
14
14
15
15
# Create an Azure Virtual Machine with a dual-stack network using the Azure CLI
16
16
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.
18
18
19
19
## Prerequisites
20
20
@@ -38,7 +38,7 @@ Create a resource group with [az group create](/cli/azure/group#az-group-create)
38
38
39
39
## Create a virtual network
40
40
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.
42
42
43
43
Use [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) to create a virtual network.
44
44
@@ -54,7 +54,7 @@ Use [az network vnet create](/cli/azure/network/vnet#az-network-vnet-create) to
54
54
55
55
## Create public IP addresses
56
56
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.
58
58
59
59
Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create) to create the public IP addresses.
60
60
@@ -76,7 +76,7 @@ Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public
76
76
```
77
77
## Create a network security group
78
78
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.
80
80
81
81
Use [az network nsg create](/cli/azure/network/nsg#az-network-nsg-create) to create the network security group.
82
82
@@ -88,7 +88,7 @@ Use [az network nsg create](/cli/azure/network/nsg#az-network-nsg-create) to cre
88
88
89
89
### Create network security group rules
90
90
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.
92
92
93
93
Use [az network nsg rule create](/cli/azure/network/nsg/rule#az-network-nsg-rule-create) to create the network security group rules.
94
94
@@ -122,11 +122,11 @@ Use [az network nsg rule create](/cli/azure/network/nsg/rule#az-network-nsg-rule
122
122
123
123
## Create virtual machine
124
124
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.
126
126
127
127
### Create network interface
128
128
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.
0 commit comments