Microsoft Azure Virtual Network Explained

Microsoft Azure Virtual Network Explained

16 Mar 2024
Intermediate
27.6K Views
17 min read
Learn via Video Course & by Doing Hands-on Labs

Azure Developer Certification Course (Az-204)

Virtual Network aka VNet is a simplified version of the internet. This allows to provision and management of different virtual private networks (VPN) to make an isolated and highly secured network. It also allows configuring to link different VNets. This can resemble a set of connected systems and servers which can communicate with each other but it cannot be accessed via the Internet. The resources like virtual machines inside a virtual network can only respond to requests that initiate from that virtual network. A Special VPN key is required to access the VMs or web applications that are deployed in virtual private networks. Ready to dive in? Explore our Free Demo Content through Azure Tutorial and join our Microsoft Azure Certification trusted by many scholars!

What is Azure Virtual Network

Azure Virtual Network is a cloud service offering from Microsoft which is a representation of a virtual network in the cloud. In general, Azure Virtual Networks are used to secure development and deployment environments with any kind of network attacks and data leaks. Virtual machines, web apps, database, load balancer etc. should always be kept inside the Virtual network. With Azure, it is very easy to create and configure highly secure private networks with the help of network security groups.

Read More: Top 50 Azure Interview Questions and Answers

Azure Virtual Network Architecture

Azure Virtual Network Architecture source https://docs.microsoft.com

The above is a typical architecture of a virtual Network for n-tier application architecture. The entire virtual network has been subdivided into different subnets based on workloads like web tier that contains the User interface, the Business tier that operates the business logic and data tier that hosts the data source. The idea to create and bind each group of Virtual machines into different subnet is useful in a way that we can assign one Network Security Group (NSG) to each subnet and can control the traffic flows between the tiers. For example, an HTTP request from the internet should not directly reach to data tier subnet. We can assign access policy to the Network Security Group of Subnet attached with data tier which only allows incoming requests from business tier subnet. Any other requests trying to reach data tier with any protocol other than business tier will be denied. Similarly, we can assign an access policy on NSG of business tier subnet that the incoming request source IP address should fall in the range of web tier subnet. Additionally, we can also control the traffic requests to the Active Directory by putting that in a separate Subnet inside a Virtual Network.

Before we go ahead and create a Virtual Network, there are a couple of terms to understand :

Resource Group

A Resource Group is a logical container for all related resources. Generally, all the Azure resources created for a particular environment like test environment can be put in a single resource group and assign access to users as per need. For any application architecture all resources (like VMs, VNets, IP, App Service, Azure Functions etc.) which combine make a complete system need to be replicated for each environment like Dev, Test, UAT, Pre-Prod, and Prod. So, we can have different resource group for each environment and create all required resources within the corresponding resource group. Then, we can provide access to the test team to the test resource group only and dev team to the dev resource group only.

Public IP

Resources like websites, API apps, Load balancers, Application gateways will require a public IP address in order to receive requests from the internet and that is achieved by a public IP address. We can also have a public IP address for the Virtual Machines but it is not recommended as it can allow malicious attacks. Subnet: A subnetwork or simply subnet is a range of IP addresses within a Virtual Network. It can be considered as all the machines in a particular project of an organization are having a separately identifiable IP addresses corresponding to a particular range. Now, we can assign a network security group to this range of IP addresses (Subnet) in order to allow some RDP connection to Project specific machines. Different tiers of an application architecture are also placed in different subnets to isolate them from each other.

Network Security Group

A network security group is a set of rules or policies for incoming and outgoing requests. A network security group is generally attached at the subnet level. The advantage of applying network security groups to Subnets is that we can control the data flow. This is important in terms of network security. With an NSG, we can define the IP range for the source of incoming requests.

Advantages of Using Azure Virtual Network

There are many benefits of using Azure Virtual Network which are as follows:

  1. Connectivity Options- There are many connectivity options in Azure Virtual Network like site-to-site VPN, point-to-site VPN, Azure ExpressRoute, and virtual network peering.
  2. Scalability- Azure Virtual Network is scalable enough to handle large workloads and growing infrastructure requirements.
  3. Isolation and Segmentation- It gives total control of the resources and enhanced security by creating an isolated and segmented network environments.
  4. Network Security- The security of Azure virtual network is much more enhanced due to its features like Network Security Groups (NSGs).
  5. Traffic Routing and Load Balancing- The network performance can be highly optimized and workloads are evenly distributed with the help of advanced traffic routing and load balancing techniques.
  6. Hybrid Cloud Integration- Using Azure Virtual Network, it becomes easy to connect on-premises network with the help of cloud. Large workloads can also be easily moved between your servers and Azure.

Read More: How to Build a Career with Microsoft Azure Fundamentals Certification?

Create a Virtual Network using the Azure Portal

  1. Login to the Azure portal portal.azure.com and click on Create a resource.

  2. On the Marketplace select Networking tab and click on Virtual network as shown below.

  3. Create a Virtual Network using the Azure Portal
  4. In the Create VNet screen, provide a name to the virtual network and an address space. Choose subscription, resource group and location.

  5. Additionally, also provide a subnet name and address space which should fall within the range of address space of virtual network and click on Create button.

  6. Create a Virtual Network using the Azure Portal
  7. From the top right corner notification tab, click on Go to resource button.

  8. Let’s create a network security group. Click on Create a resource and select Networking tab and click on Network Security group.

  9. Provide name, subscription, resource group and location.

  10. Click on create button.

  11. Go back to the virtual network and click on subnets.

  12. Select the subnet and open its details.

  13. We can attach the network security group to the subnet and save.

  14. Go to the network security group and click on Inbound security rules.

  15. We can add/ delete more security rules to enhance network security.

Creating a Virtual Network using PowerShell

  1. Launch cloud shell from the top on the portal.

  2. Alternatively, open PowerShell command prompt locally on the system. Check for the latest version of AzureRM module. To continue, the version should be 5.4.1 or later. Run the below command to check for version

    Get-Module -ListAvailable AzureRM
    
  3. Login to Azure with the following command :

    Connect-AzureRmAccount
    
  4. Create a resource group by running the following command :

    New-AzureRmResourceGroup -Name DNTResourceGroup -Location EastUS
    
  5. Create a Virtual Network in the same location where resource group is and attach the Vnet with the resource group

    $virtualNetwork = New-AzureRmVirtualNetwork `
     -ResourceGroupName DNTResourceGroup `
     -Location EastUS `
     -Name DNTVirtualNetwork `
     -AddressPrefix 10.10.0.0/16
    
  6. Create a subnet within the virtual network

    $subnetConfig = Add-AzureRmVirtualNetworkSubnetConfig `
     -Name default `
     -AddressPrefix 10.10.0.0/24 `
     -VirtualNetwork $virtualNetwork
    
  7. Now that our Virtual Network is ready, we can assign this virtual network to Virtual machines. Let’s create a VM with the following command :

    New-AzureRmVm `
     -ResourceGroupName " DNTResourceGroup " `
     -Location "East US" `
     -VirtualNetworkName "DNTVirtualNetwork" `
     -SubnetName "default" `
     -Name "DNTVm1" `
     -AsJob
     
  8. Get the IP address of VM with the help of following command

     
    Get-AzureRmPublicIpAddress 
     -Name DNTVm1
     -ResourceGroupName DNTResourceGroup | Select IpAddress
    
  9. Using the IP from the above command, run the below command to download the RDP file and use it to connect the VM.

    mstsc /v:<publicIpAddress>
    
Summary

A virtual network is a network of IP addresses in a range connected together. It is an important aspect of consideration while designing solutions in the cloud. In order to secure each layer of application architecture inside a highly secured network, it is recommended to create different subnets for different tiers of an application and attach each subnet with a network security group with limited inbound and outbound security rules.

If you want to learn more about Azure cloud by implementing step-by-step Azure services you can choose an unlimited Azure online training program to enhance your skills by 10x to earn azure certification.

FAQs

Q1. What is a virtual network in Azure?

A Virtual network is a network environment within the the Azure cloud platform which is logically isolated and can be easily customized.

Q2. What are the key features of Azure virtual network?

The Azure Virtual Network provides many useful features such as isolation, customizable IP addressing, various connectivity options, network security, etc.

Q3. How does Azure VM internet work?

Azure VM access the internet through the public IP addresses assigned to them without a defined direct output method.

Q4. How does a virtual network function?

A virtual network functions by providing a logically isolated network environment within the cloud platform which can also be customized. It lets its users to define their own private IP address space communicate and connect  in a secure manner.

Take our free azure skill challenge to evaluate your skill

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET CHALLENGE

Share Article
Batches Schedule
About Author
Rupesh K. Roy (Author, Speaker and Microsoft Certified Trainer)

He is an Author, Technology Speaker and Microsoft Certified Trainer on .Net and Azure platforms. He has more than 5 years of industry expertise and has worked as a developer with the most prominent companies on Azure, .Net Core and React JS. He is passionate about learning and sharing new technical stacks.
Self-paced Membership
  • 22+ Video Courses
  • 750+ Hands-On Labs
  • 300+ Quick Notes
  • 55+ Skill Tests
  • 45+ Interview Q&A Courses
  • 10+ Real-world Projects
  • Career Coaching Sessions
  • Email Support
Upto 60% OFF
Know More
Accept cookies & close this