Skip to content

Commit 854efb3

Browse files
authored
Merge pull request #222114 from GitaraniSharma-MSFT/patch-62
(AzureCXP) MicrosoftDocs/azure-docs#102878
2 parents b578097 + b2d6c32 commit 854efb3

File tree

1 file changed

+65
-65
lines changed

1 file changed

+65
-65
lines changed

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

Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ In this tutorial, you learn how to:
2424
> [!div class="checklist"]
2525
> * Create a virtual network and subnets
2626
> * Create an NVA that routes traffic
27+
> * Deploy virtual machines (VMs) into different subnets
2728
> * Create a route table
2829
> * Create a route
2930
> * Associate a route table to a subnet
30-
> * Deploy virtual machines (VMs) into different subnets
3131
> * Route traffic from one subnet to another through an NVA
3232
3333
This tutorial uses the Azure portal. You can also complete it using the [Azure CLI](tutorial-create-route-table-cli.md) or [PowerShell](tutorial-create-route-table-powershell.md).
@@ -142,70 +142,6 @@ Network virtual appliances (NVAs) are virtual machines that help with network fu
142142

143143
6. Review the settings, and then select **Create**.
144144

145-
## Create a route table
146-
147-
In this section, you'll create a route table.
148-
149-
1. From the Azure portal menu, select **+ Create a resource** > **Networking** > **Route table**, or search for *Route table* in the portal search box.
150-
151-
3. Select **Create**.
152-
153-
4. On the **Basics** tab of **Create route table**, enter or select this information:
154-
155-
| Setting | Value |
156-
| ------- | ----- |
157-
| **Project details** | |
158-
| Subscription | Select your subscription.|
159-
| Resource group | Select **myResourceGroup**. |
160-
| **Instance details** | |
161-
| Region | Select **East US**. |
162-
| Name | Enter *myRouteTablePublic*. |
163-
| Propagate gateway routes | Select **Yes**. |
164-
165-
:::image type="content" source="./media/tutorial-create-route-table-portal/create-route-table.png" alt-text="Screenshot showing Basics tab of Create route table in Azure portal." border="true":::
166-
167-
5. Select the **Review + create** tab, or select the blue **Review + create** button at the bottom of the page.
168-
169-
## Create a route
170-
171-
In this section, you'll create a route in the route table that you created in the previous steps.
172-
173-
1. Select **Go to resource** or Search for *myRouteTablePublic* in the portal search box.
174-
175-
3. In the **myRouteTablePublic** page, select **Routes** from the **Settings** section.
176-
177-
4. In the **Routes** page, select the **+ Add** button.
178-
179-
5. In **Add route**, enter or select this information:
180-
181-
| Setting | Value |
182-
| ------- | ----- |
183-
| Route name | Enter *ToPrivateSubnet*. |
184-
| Address prefix destination | Select **IP Addresses**. |
185-
| Destination IP addresses/CIDR ranges| Enter *10.0.1.0/24* (The address range of the **Private** subnet created earlier). |
186-
| Next hop type | Select **Virtual appliance**. |
187-
| Next hop address | Enter *10.0.2.4* (The address of **myVMNVA** VM created earlier in the **DMZ** subnet). |
188-
189-
:::image type="content" source="./media/tutorial-create-route-table-portal/add-route-inline.png" alt-text="Screenshot showing Add route configuration in Azure portal." lightbox="./media/tutorial-create-route-table-portal/add-route-expanded.png":::
190-
191-
6. Select **Add**.
192-
193-
## Associate a route table to a subnet
194-
195-
In this section, you'll associate the route table that you created in the previous steps to a subnet.
196-
197-
1. Search for *myVirtualNetwork* in the portal search box.
198-
199-
3. In the **myVirtualNetwork** page, select **Subnets** from the **Settings** section.
200-
201-
4. In the virtual network's subnet list, select **Public**.
202-
203-
5. In **Route table**, select **myRouteTablePublic** that you created in the previous steps.
204-
205-
6. Select **Save** to associate your route table to the **Public** subnet.
206-
207-
:::image type="content" source="./media/tutorial-create-route-table-portal/associate-route-table-inline.png" alt-text="Screenshot showing Associate route table to the Public subnet in the virtual network in Azure portal." lightbox="./media/tutorial-create-route-table-portal/associate-route-table-expanded.png":::
208-
209145
## Create public and private virtual machines
210146

211147
You'll create two virtual machines in **myVirtualNetwork** virtual network, then you'll allow Internet Control Message Protocol (ICMP) on them so you can use *tracert* tool to trace traffic.
@@ -371,6 +307,70 @@ In this section, you'll turn on IP forwarding for the operating system of **myVM
371307
Restart-Computer
372308
```
373309
310+
## Create a route table
311+
312+
In this section, you'll create a route table.
313+
314+
1. From the Azure portal menu, select **+ Create a resource** > **Networking** > **Route table**, or search for *Route table* in the portal search box.
315+
316+
3. Select **Create**.
317+
318+
4. On the **Basics** tab of **Create route table**, enter or select this information:
319+
320+
| Setting | Value |
321+
| ------- | ----- |
322+
| **Project details** | |
323+
| Subscription | Select your subscription.|
324+
| Resource group | Select **myResourceGroup**. |
325+
| **Instance details** | |
326+
| Region | Select **East US**. |
327+
| Name | Enter *myRouteTablePublic*. |
328+
| Propagate gateway routes | Select **Yes**. |
329+
330+
:::image type="content" source="./media/tutorial-create-route-table-portal/create-route-table.png" alt-text="Screenshot showing Basics tab of Create route table in Azure portal." border="true":::
331+
332+
5. Select the **Review + create** tab, or select the blue **Review + create** button at the bottom of the page.
333+
334+
## Create a route
335+
336+
In this section, you'll create a route in the route table that you created in the previous steps.
337+
338+
1. Select **Go to resource** or Search for *myRouteTablePublic* in the portal search box.
339+
340+
3. In the **myRouteTablePublic** page, select **Routes** from the **Settings** section.
341+
342+
4. In the **Routes** page, select the **+ Add** button.
343+
344+
5. In **Add route**, enter or select this information:
345+
346+
| Setting | Value |
347+
| ------- | ----- |
348+
| Route name | Enter *ToPrivateSubnet*. |
349+
| Address prefix destination | Select **IP Addresses**. |
350+
| Destination IP addresses/CIDR ranges| Enter *10.0.1.0/24* (The address range of the **Private** subnet created earlier). |
351+
| Next hop type | Select **Virtual appliance**. |
352+
| Next hop address | Enter *10.0.2.4* (The address of **myVMNVA** VM created earlier in the **DMZ** subnet). |
353+
354+
:::image type="content" source="./media/tutorial-create-route-table-portal/add-route-inline.png" alt-text="Screenshot showing Add route configuration in Azure portal." lightbox="./media/tutorial-create-route-table-portal/add-route-expanded.png":::
355+
356+
6. Select **Add**.
357+
358+
## Associate a route table to a subnet
359+
360+
In this section, you'll associate the route table that you created in the previous steps to a subnet.
361+
362+
1. Search for *myVirtualNetwork* in the portal search box.
363+
364+
3. In the **myVirtualNetwork** page, select **Subnets** from the **Settings** section.
365+
366+
4. In the virtual network's subnet list, select **Public**.
367+
368+
5. In **Route table**, select **myRouteTablePublic** that you created in the previous steps.
369+
370+
6. Select **Save** to associate your route table to the **Public** subnet.
371+
372+
:::image type="content" source="./media/tutorial-create-route-table-portal/associate-route-table-inline.png" alt-text="Screenshot showing Associate route table to the Public subnet in the virtual network in Azure portal." lightbox="./media/tutorial-create-route-table-portal/associate-route-table-expanded.png":::
373+
374374
## Test the routing of network traffic
375375
376376
You'll test routing of network traffic using [tracert](/windows-server/administration/windows-commands/tracert) tool from **myVMPublic** VM to **myVMPrivate** VM, and then you'll test the routing in the opposite direction.

0 commit comments

Comments
 (0)