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
# Quickstart: Diagnose a virtual machine network traffic filter problem - Azure CLI
23
23
24
-
In this quickstart, you deploy a virtual machine (VM), and then check communications to an IP address and URL and from an IP address. You determine the cause of a communication failure and how you can resolve it.
24
+
In this quickstart, you deploy a virtual machine (VM) and then check communications to and from an IP address and to a URL. You determine the cause of a communication failure and how to resolve it.
- This quickstart requires version 2.0 or later of the Azure CLI. If using Azure Cloud Shell, the latest version is already installed.
30
+
- This quickstart requires version 2.0 or later of the Azure CLI. If you are using Azure Cloud Shell, the latest version is already installed.
31
31
32
32
- The Azure CLI commands in this quickstart are formatted to run in a Bash shell.
33
33
@@ -39,7 +39,7 @@ Before you can create a VM, you must create a resource group to contain the VM.
39
39
az group create --name myResourceGroup --location eastus
40
40
```
41
41
42
-
Create a VM with [az vm create](/cli/azure/vm). If SSH keys do not already exist in a default key location, the command creates them. To use a specific set of keys, use the `--ssh-key-value` option. The following example creates a VM named *myVm*:
42
+
Create a VM with [az vm create](/cli/azure/vm). If SSH keys don't already exist in a default key location, the command creates them. To use a specific set of keys, use the `--ssh-key-value` option. The following example creates a VM named *myVm*:
43
43
44
44
```azurecli-interactive
45
45
az vm create \
@@ -49,7 +49,7 @@ az vm create \
49
49
--generate-ssh-keys
50
50
```
51
51
52
-
The VM takes a few minutes to create. Don't continue with remaining steps until the VM is created and the Azure CLI returns output.
52
+
The VM takes a few minutes to create. Don't continue with the remaining steps until the VM is created and the Azure CLI returns output.
0 commit comments