Microsoft Azure

Tutorials | Networking

Create an Azure Virtual Network

This tutorial will guide you through the process of creating your first Azure Virtual Network (VNet) using the Azure portal. A virtual network is a fundamental building block for your private network in Azure. It allows Azure resources to securely communicate with each other, the internet, and on-premises networks.

Step 1: Sign in to the Azure Portal

Open your web browser and navigate to https://portal.azure.com/. Sign in with your Azure account credentials.

Step 2: Navigate to Virtual Networks

  1. In the Azure portal search bar at the top, type "Virtual networks" and select Virtual networks from the search results.
  2. Click on + Create to start the creation process.

Step 3: Configure Basic Settings

On the "Create virtual network" page, you'll configure the following:

Step 4: Configure IP Addresses

This section defines the IP address space for your virtual network.

Step 5: Configure Security Settings (Optional)

For this basic tutorial, you can leave the security settings at their defaults:

Step 6: Configure Tags (Optional)

Tags are key-value pairs that help you organize and categorize your Azure resources. You can add tags like Environment: Development or Project: NetworkingDemo if needed.

Step 7: Review and Create

Click on the Review + create button. Azure will validate your configuration. Once validation passes, review the summary and click Create.

The deployment process will take a few minutes.

Important: A virtual network provides logical isolation. To enable communication between resources within the VNet, you'll typically deploy virtual machines or other services into subnets.

Next Steps

Once your virtual network is created, you can start deploying Azure resources into it. Consider the following:

For more advanced networking scenarios, please refer to the Azure Networking Tutorials section.