Skip to content

Commit 756d70c

Browse files
authored
Merge pull request #225415 from halkazwini/rs-nva
Route Server: Freshness: Tutorial: Configure peering between Azure Route Server and Quagga network virtual appliance
2 parents fda4955 + a3c2bd1 commit 756d70c

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

articles/route-server/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
href: resource-manager-template-samples.md
2222
- name: Tutorials
2323
items:
24-
- name: Configure Route Server with Quagga
24+
- name: Peer Route Server with NVA
2525
href: tutorial-configure-route-server-with-quagga.md
2626
- name: Deploy Route Server with DDoS protection
2727
href: tutorial-protect-route-server.md

articles/route-server/tutorial-configure-route-server-with-quagga.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: "Tutorial: Configure peering between Azure Route Server and Quagga network virtual appliance"
3-
description: This tutorial shows you how to configure an Azure Route Server and peer it with a Quagga network virtual appliance.
2+
title: "Tutorial: Configure peering between Azure Route Server and Network Virtual Appliance"
3+
description: This tutorial shows you how to configure an Azure Route Server and peer it with a Network Virtual Appliance (NVA) using the Azure portal.
44
author: halkazwini
55
ms.author: halkazwini
66
ms.service: route-server
77
ms.topic: tutorial
8-
ms.date: 08/01/2022
9-
ms.custom: template-tutorial
8+
ms.date: 01/27/2023
9+
ms.custom: template-tutorial, engagement-fy23
1010
---
1111

12-
# Tutorial: Configure peering between Azure Route Server and Quagga network virtual appliance
12+
# Tutorial: Configure peering between Azure Route Server and Network Virtual Appliance
1313

14-
This tutorial shows you how to deploy an Azure Route Server into a virtual network and establish a BGP peering connection with a Quagga network virtual appliance. You'll deploy a virtual network with four subnets. One subnet will be dedicated to the Azure Route Server and another subnet dedicated to the Quagga NVA. The Quagga NVA will be configured to exchange routes with the Route Server. Lastly, you'll test to make sure routes are properly exchanged on the Azure Route Server and Quagga NVA.
14+
This tutorial shows you how to deploy an Azure Route Server into a virtual network and establish a BGP peering connection with a Quagga Network Virtual Appliance (NVA). You'll deploy a virtual network with four subnets. One subnet will be dedicated to the Route Server and another subnet dedicated to the Quagga NVA. The Quagga NVA will be configured to exchange routes with the Route Server. Lastly, you'll test to make sure routes are properly exchanged on the Route Server and Quagga NVA.
1515

1616
In this tutorial, you learn how to:
1717

@@ -34,7 +34,7 @@ Sign in to the Azure portal at https://portal.azure.com.
3434

3535
## Create a virtual network
3636

37-
You'll need a virtual network to deploy both the Azure Route Server and the Quagga NVA. Azure Route Server must be deployed in a dedicated subnet called *RouteServerSubnet*.
37+
You'll need a virtual network to deploy both the Route Server and the Quagga NVA. Azure Route Server must be deployed in a dedicated subnet called *RouteServerSubnet*.
3838

3939
1. On the Azure portal home page, search for *virtual network*, and select **Virtual networks** from the search results.
4040

@@ -102,7 +102,7 @@ The Route Server is used to communicate with your NVA and exchange virtual netwo
102102

103103
To configure the Quagga network virtual appliance, you'll need to deploy a Linux virtual machine, and then configure it with this [script](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/route-server-quagga/scripts/quaggadeploy.sh).
104104

105-
### Create Quagga virtual machine
105+
### Create Quagga virtual machine (VM)
106106

107107
1. On the Azure portal, search for *virtual machine*, and select **Virtual machines** from the search results.
108108

@@ -146,9 +146,9 @@ To configure the Quagga network virtual appliance, you'll need to deploy a Linux
146146

147147
:::image type="content" source="./media/tutorial-configure-route-server-with-quagga/create-quagga-networking-tab.png" alt-text="Screenshot of networking tab for creating a new virtual machine." lightbox="./media/tutorial-configure-route-server-with-quagga/create-quagga-networking-tab-expanded.png":::
148148

149-
1. Select **Review + create** and then **Create** after validation passes. The deployment of the VM will take about 10 minutes.
149+
1. Select **Review + create** and then **Create** after validation passes. The deployment of the virtual machine will take about 10 minutes.
150150

151-
1. Once the VM has deployed, go to the **Networking** page of **Quagga** virtual machine and select the network interface.
151+
1. Once the virtual machine has deployed, go to the **Networking** page of **Quagga** virtual machine and select the network interface.
152152

153153
:::image type="content" source="./media/tutorial-configure-route-server-with-quagga/quagga-network-settings.png" alt-text="Screenshot of networking page of the Quagga VM.":::
154154

@@ -158,7 +158,7 @@ To configure the Quagga network virtual appliance, you'll need to deploy a Linux
158158

159159
1. Under **Private IP address Settings**, change the **Assignment** from **Dynamic** to **Static**, and then change the **IP address** from **10.1.4.4** to **10.1.4.10**. This IP address is used in this [script](https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.network/route-server-quagga/scripts/quaggadeploy.sh), which will be run in a later step. If you want to use a different IP address, ensure to update the IP in the script.
160160

161-
1. Take note of the public IP, and select **Save** to update the IP configurations of the VM.
161+
1. Take note of the public IP, and select **Save** to update the IP configurations of the virtual machine.
162162

163163
:::image type="content" source="./media/tutorial-configure-route-server-with-quagga/change-ip-configuration.png" alt-text="Screenshot of changing IP configurations the Quagga VM.":::
164164

@@ -251,8 +251,5 @@ When no longer needed, you can delete all resources created in this tutorial by
251251
252252
## Next steps
253253
254-
In this tutorial, you learned how to create and configure a Route Server with and an NVA. To learn more on Route Servers, see the frequently asked questions page:
254+
In this tutorial, you learned how to create and configure an Azure Route Server with a Network Virtual Appliance (NVA). To learn more about Route Servers, see [Azure Route Server frequently asked questions (FAQs)](route-server-faq.md).
255255
256-
Advance to the next article to learn how to troubleshoot Route Server.
257-
> [!div class="nextstepaction"]
258-
> [Route Server FAQ](route-server-faq.md)

0 commit comments

Comments
 (0)