DEV Community

odi
odi

Posted on

HOW TO CREATE AN AZURE VIRTUAL NETWORK(VNET)

πŸ“Œ Step 1: Sign in to Azure Portal

Go to https://portal.azure.com and log in with your Azure account credentials.

Image description

πŸ“Œ Step 2: Navigate to β€˜Virtual Networks’

In the left-hand menu, select "Create a resource".

In the Search the Marketplace box, type Virtual Network and select it.

Click Create.
Enter fullscreen mode Exit fullscreen mode

Image description

Image description

πŸ“Œ Step 3: Configure the Basics

In the Basics tab:

Subscription: Select your subscription.

Resource group: Choose an existing one or create a new resource group.

Name: Give your VNet a meaningful name (e.g., MyVNet).

Region: Select the Azure region (location) for your VNet.
Enter fullscreen mode Exit fullscreen mode

Click Next: IP Addresses >

Image description

πŸ“Œ Step 4: Configure IP Address Space

In the IP Addresses tab:

IPv4 address space: Set your CIDR block (e.g., 10.0.0.0/16).

Subnets: Add at least one subnet. Click + Add subnet:

    Name: e.g., Subnet1

    Subnet address range: e.g., 10.0.0.0/24
Enter fullscreen mode Exit fullscreen mode

Click Add.

You can add more subnets if needed.

Image description

Image description

πŸ“Œ Step 5: Review + Create

Review your configuration.

Click Create.
Enter fullscreen mode Exit fullscreen mode

Deployment takes a few seconds.

Image description

Image description

Top comments (0)