Create Virtual Network (VNet) using Azure Management Portal

In this article, we will learn how to create a Virtual Network VNet using Azure Management Portal.

Introduction

As a Software engineer, within our organization, while working on a workstation, we need to be connected to multiple resources like Web Servers, Database servers, Printers, Active Directory servers, Centralized File Servers etc. In order to be connected to all those multiple resources, our work stations need to be connected to Networks (ex: LAN, WAN). In the similar way, our production environment, each Virtual Machine need to connect to multiple resources (like IP Address, other Virtual Machine, etc.). In order to connect to any other resource, the Virtual Machine should be first connected to a Virtual Network. Like how we work in our Local Area Network (LAN), we can also create network on Cloud called as Virtual Network (VNet). Think about VNet as a network of resources that could communicate each other. I hope you have now got a brief idea on why and what is a Virtual Network.

In this article, we will learn how to create a VNet using Azure Management Portal. We will also learn about the basic attributes of a VNet that are required while creating the same.

Create a Virtual Network

After logging into the Azure Management Portal, as shown in the below screen capture, select the Virtual Network to navigate to the blade to create a new VNet.

1_vnet_selectvirtualnetwork

In the next step, you will need to choose the deployment model.

2_selectdeploymentmodel

As shown in the above screen capture, we have chosen “Resource Manager” as the deployment model where everything (ex: VNet, Subnet, NSG, NIC, IPAddress) is treated as a separate component or entity.

After clicking on the “Create” button, you will be taken the following blade where you can provide all the VNet related attributes.

3_createvnet

Let’s try to understand each of the attributes in detail.

  • Address Space – Range of the IPAddress that could be assigned to the devices (it’s actually NIC’s to which an IPAddress could be assigned) within the network.
  • CIDR Notation (Classless Inter Domain Routing) – The notation using which the IP Address is assigned.
  • Subnet – It’s nothing but a segmentation of a Virtual Network. You can have multiple Subnets in a given VNet. Below are examples on the considerations while creating your Cloud production environments.
    • You could create a Subnet (10.1.0.0/25) for hosting all your Web Servers
    • You could create a Subnet (10.2.0.0/25) for hosting all your Database servers

4_vnetlisting

By default, a VNet must have a subnet to contain any devices within the VNet.

Once you provide all the mandatory fields, click on “Create” button to create the Virtual Network as shown below.

Other important points to remember

  • The smallest subnet that Azure support is a /29 and the largest is a /8 (using CIDR notation).
  • Azure reserves some IP addresses within each subnet. The first and last IP addresses of the subnets are reserved for protocol conformance, along with 3 more addresses (2nd, 3rd and 4th) used for Azure services. As shown below, the Azure management portal shows that we can create 128 addresses in a given subnet based on the address range.
  • 5_subnetaddressspace

However, when I navigate to the Subnet’s blade of the “demo-web-snet” I can see that we can just create 123 addresses.

6_availableaddress

Summary: In this article, we have learned what is VNet and Subnet and also few of the basics of Networking like CIDR notation.

Hope you enjoyed the article. Your feedback is appreciated.

2 comments

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s