Skip to content

Commit 8193806

Browse files
authored
Merge pull request #195658 from mbender-ms/gh-91527
tutorial-create-route-table-cli
2 parents 4c6e2ac + 5ead304 commit 8193806

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/virtual-network/tutorial-create-route-table-cli.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ manager: mtillman
88
editor: ''
99
tags: azure-resource-manager
1010
# Customer intent: I want to route traffic from one subnet, to a different subnet, through a network virtual appliance.
11-
12-
ms.assetid:
11+
1312
ms.service: virtual-network
1413
ms.devlang: azurecli
1514
ms.topic: how-to
1615
ms.tgt_pltfrm: virtual-network
1716
ms.workload: infrastructure
18-
ms.date: 03/13/2018
17+
ms.date: 04/20/2022
1918
ms.author: mbender
2019
ms.custom: devx-track-azurecli
2120
---
@@ -117,7 +116,7 @@ az network vnet subnet update \
117116

118117
An NVA is a VM that performs a network function, such as routing, firewalling, or WAN optimization.
119118

120-
Create an NVA in the *DMZ* subnet with [az vm create](/cli/azure/vm). When you create a VM, Azure creates and assigns a network interface 'myVmNvaVMNic' and a public IP address to the VM, by default. The `--public-ip-address ""` parameter instructs Azure not to create and assign a public IP address to the VM, since the VM doesn't need to be connected to from the internet. 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.
119+
Create an NVA in the *DMZ* subnet with [az vm create](/cli/azure/vm). When you create a VM, Azure creates and assigns a network interface *myVmNvaVMNic* and a public IP address to the VM, by default. The `--public-ip-address ""` parameter instructs Azure not to create and assign a public IP address to the VM, since the VM doesn't need to be connected to from the internet. 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.
121120

122121
```azurecli-interactive
123122
az vm create \
@@ -217,6 +216,8 @@ When prompted for a password, enter the password you selected in [Create virtual
217216
Use the following command to install trace route on the *myVmPrivate* VM:
218217

219218
```bash
219+
sudo apt-get update
220+
sudo apt-get upgrade
220221
sudo apt-get install traceroute
221222
```
222223

0 commit comments

Comments
 (0)