Skip to content

Commit 7409ba9

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into mrb_03_29_2023_prompt_engineering
2 parents 796c065 + ca1d706 commit 7409ba9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 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 \
@@ -180,7 +180,7 @@ Use [az network public-ip show](/cli/azure/network/public-ip#az-network-public-i
180180
--output tsv
181181
```
182182

183-
```bash
183+
```azurecli-interactive
184184
user@Azure:~$ az network public-ip show \
185185
> --resource-group myResourceGroup \
186186
> --name myPublicIP-IPv4 \
@@ -197,7 +197,7 @@ user@Azure:~$ az network public-ip show \
197197
--output tsv
198198
```
199199

200-
```bash
200+
```azurecli-interactive
201201
user@Azure:~$ az network public-ip show \
202202
> --resource-group myResourceGroup \
203203
> --name myPublicIP-IPv6 \
@@ -208,7 +208,7 @@ user@Azure:~$ az network public-ip show \
208208

209209
Open an SSH connection to the virtual machine by using the following command. Replace the IP address with the IP address of your virtual machine.
210210

211-
```bash
211+
```azurecli-interactive
212212
213213
```
214214

0 commit comments

Comments
 (0)