Theory Of Azure Virtual Network With Four Hands-On Labs

Outline

  • Introduction
  • Key terminology used in a virtual network
  • Lab 1: Create a virtual network using Azure Portal
  • Lab 2: Create a virtual network using Azure CLI
  • Lab 3: Create a virtual network using PowerShell
  • Lab 4: Create a virtual network using ARM template

Introduction

In this article, we will go through the concept of Azure virtual network, what Azure virtual network is and terms in the virtual network which are used to create a virtual network.

Key terminology used in a virtual network

  1. Virtual Network
  2. IP Address
  3. Subnet
  4. Network Interface Card
  5. Load Balancer
  6. Application Gateway
  7. Traffic Manager
  8. Network Security Group
  9. Force Tunnelling
  10. Regional Virtual Network
  11. Cross Premises Network

Virtual Network: Virtual network (VNet) is your private network in the Azure cloud. This provides you with a secure way to communicate between your virtual machines and other services that are inside of your virtual network in Azure Cloud or on-premises.

IP Address: IP addresses are the range of addresses that define the network and each VM which is part of a virtual network can communicate through this IP address. Each VM within the Vnet can have a private or public IP address, the private IP address allows communication between one or more of the VMs inside the Vnet, but from outside of the Vnet public IP address is used over the internet for communication.

Subnet: It is a network inside your network. In other words, Subnet is a small portion of the IP address range that is allocated to a virtual network.

Network Interface Card: The Network interface card is used to connect the VM through the network.

Load Balancer: Load balancer is used to distribute the incoming traffic evenly across a group of servers. This distribution of traffic is based on the health probe of servers that are behind the load balancer.

Application Gateway: It is a web traffic load balancer that helps you to manage your traffic to your web application. It is on top of load balancing your workloads, so it can make routing decisions to pass your URL request to the appropriate node. For example, if two types of requests come to the application gateway, one is for images and the second one is for videos, then the application gateway can make a decision where to redirect these requests if we have two dedicated servers, one for serving images and one for serving videos.

Traffic Manager: It is also used to distribute the traffic at the DNS level, for example, if I have a website www.IamCkNitin.com and I have traffic from many countries and to manage and I want to distribute the traffic to manage the load in a way that US traffic should go through the US server and India traffic should go through the India server.

Network Security Group: It's a set of rules that work as a filter for your traffic that connects with the Azure virtual network (Vnet). It allows or denies inbound network security network traffic.

For example, if we have a Vnet “XYZ” and there are two VMs “A” and “B” inside the Vnet “XYZ” and we don’t want an RDP connection to access these VMs through the public IP but both the machines can access their RDP using their private IP, then we can define this type of security under the Network Security Group.

Force Tunnelling: Force tunneling controls the flow of your traffic, it is for inspection and auditing of all internet-bound traffic. It forces all your internet-bound traffic to your on-premise location via sit-to-site VPN tunneling so you can have the ability to inspect and audit the traffic.

Regional Network: Microsoft Azure has multiple regions. We may have multiple Vnets that may work in different regions, so the connections between these Vnets which are in different regions come under this section.

Cross Premises Network: It is a network that is connected to your on-premise network. It allows your Azure virtual machine to be part of your on-premise network.

Lab 1 - Create a Virtual Network Using Azure Portal

  • Log in to Azure portal
  • In the search bar “Virtual Network” select it
    Create Virtual Network-01
    Figure 1.
  • Now click on the “+ Add” to start creating a virtual network
    Create Virtual Network-02
    Figure 2.
  • Enter the basic details for the virtual network

The first tab, “Basic” is for adding basic details for the virtual network

    • Subscription: “Visual Studio Professional”
    • Resource Group: If you have an existing resource group then you can select it, I created a new one called “Learn-Vnet”
    • Name: VnetOne
    • Region: You can select any region; in this lab I am going to select “(US) Central US”
    • Either Click “Review + Create” or you can click “Next: IP Addresses”
      Create Virtual Network-03
      Figure 3.
  • Ipv4 address space By default, an address space is automatically created. You can click the address space to adjust it to reflect your values. You can also add additional address space
    Create Virtual Network-04-
    Figure 4.
  • Subnet: If you use the default address space, a default subnet is created automatically. If you change the address space, you need to add a subnet. Select + Add subnet to open the Add subnet window. Configure the following settings and then select Add to add the values.
    • Subnet name -In this example, we named the subnet “SubNet1”.
    • Subnet address range -The address range for this subnet.
      Create Virtual Network-05
      Figure 5.
  • On the Security tab, at this time, leave the default values,
    • BastionHost: Disable
    • Ddos protection standard: Basic
    • Firewall: Disabled
      Create Virtual Network-06
      Figure 6.
  • Leave the tag details empty
    Create Virtual Network-07
    Figure 7.
  • Select Review + Create to validate the virtual network settings.
  • After the settings have been validated, select Create when you hit the Create button your virtual network will be created.

Note: If want to save this information as a template for future use you can click the “Download as a template for automation” as shown highlighted in Figure 8.

Create Virtual Network-08

Figure 8.

  • Click the “Download” to download this JSON template as shown in Figure 9
  • Or you can add it to your library
    Create Virtual Network-09
    Figure 9.
    {
      "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
      "contentVersion": "1.0.0.0",
      "parameters": {
        "location": {
          "type": "string"
        },
        "virtualNetworkName": {
          "type": "string"
        },
        "resourceGroup": {
          "type": "string"
        },
        "addressSpaces": {
          "type": "array"
        },
        "ipv6Enabled": {
          "type": "bool"
        },
        "subnetCount": {
          "type": "int"
        },
        "subnet0_name": {
          "type": "string"
        },
        "subnet0_addressRange": {
          "type": "string"
        },
        "ddosProtectionPlanEnabled": {
          "type": "bool"
        },
        "firewallEnabled": {
          "type": "bool"
        },
        "bastionEnabled": {
          "type": "bool"
        }
      },
      "variables": {},
      "resources": [
        {
          "name": "[parameters('virtualNetworkName')]",
          "type": "Microsoft.Network/VirtualNetworks",
          "apiVersion": "2019-09-01",
          "location": "[parameters('location')]",
          "dependsOn": [],
          "tags": {},
          "properties": {
            "addressSpace": {
              "addressPrefixes": ["10.0.0.0/16"]
            },
            "subnets": [
              {
                "name": "SubNet1",
                "properties": {
                  "addressPrefix": "10.0.0.0/24"
                }
              }
            ],
            "enableDdosProtection": "[parameters('ddosProtectionPlanEnabled')]"
          }
        }
      ]
    }
    

Listing 1.

  • Clicking the “Deploy” button will redirect you to the custom deployment page where you can Edit your template again for changes.Create Virtual Network-10
    Figure 10.
  • You can change the setting for your virtual network configuration
    Create Virtual Network-11
    Figure 11.
  • But I am going to leave this as it is and go back to our “Create Virtual Network” from the breadcrumb screen to complete the creation of our virtual network.
  • Click “Create”.
    Create Virtual Network-12
    Figure 12.
  • Your virtual network will be ready for use after a few moments as shown in Figure 13.
    Create Virtual Network-13
    Figure 13.

Lab 2 - Create a virtual network using Azure CLI

  • Login to Azure portal
  • Click the cloud shell button in the header
    Create Virtual Network-14
    Figure 14.
    Create Virtual Network-15
    Figure 15.
  • Create a resource group
    az group create–namergVnet–location as us
    Create Virtual Network-16
    Figure 16.
  • To verify now go to the Azure portal in the search bar and type “Resource Groups”
    Create Virtual Network-17
    Figure 17.
    Create Virtual Network-18
    Figure 18.
  • Create a Virtual Network with a default subnet
    aznetworkvnetcreate--nameVnet1–resource-grouprgVnet–subnet-name default
    Create Virtual Network-19
    Figure 19.

If you want to specify your subnet when creating a virtual network

First, create a Virtual network without a default subnet

  1. aznetworkvnetcreate–nameVnet2–resource-grouprgVnet

Listing 2.

Create Virtual Network-20

Figure 20.

Now create a subnet and associate it with the virtual network Vnet2

  1. aznetworkvnetsubnetcreate–resource-grouprgVnet–vent-nameVnet2–namesubnet2–address-prefix10.0.10.0/24

Listing 3.

Create Virtual Network-21

Figure 21.

To verify to the Azure portal search for Virtual Network and you will find a virtual network “Vnet2” with Subnet “Subnet2”

Create Virtual Network-22

Figure 22.

Lab 3 - Create a virtual network using PowerShell

Create a resource group

  1. New-AzResourceGroup-NamergVnet3-LocationCentralUS.

Listing 4.

Create Virtual Network-23

Figure 23.

Create Virtual Network

  1. $virtualNetwork=New-AzVirtualNetwork-ResourceGroupNamergVnet3-LocationCentralUS-NameVnet3-AddressPrefix10.0.0.0/24

Listing 5.

Go to the virtual network section on the Azure portal and you will see “Vnet3” A virtual network has been created but there is no subnet associated with this virtual network as shown in figure 24.

Create Virtual Network-24

Figure 24.

Create a subnet

  1. $subnetConfig=Add-AzVirtualNetworkSubnetConfig-Namesubnet3-AddressPrefix10.0.0.0/24-VirtualNetwork$virtualNetwork

Listing 6.

Associate the Subnet with the virtual network

  1. $virtualNetwork|Set-AzVirtualNetwork

Listing 7.

Create Virtual Network-25

Figure 25.

Create Virtual Network-26

Figure 26.

Lab 4 - Create a virtual network using ARM template

An ARM template is a JSON file with some parameters and their values, it defines the infrastructure and configuration of your Azure resources.

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "virtualNetworks_Vnet4_name": {
      "defaultValue": "Vnet4",
      "type": "String"
    }
  },
  "variables": {},
  "resources": [
    {
      "type": "Microsoft.Network/virtualNetworks",
      "apiVersion": "2020-05-01",
      "name": "[parameters('virtualNetworks_Vnet4_name')]",
      "location": "centralus",
      "properties": {
        "addressSpace": {
          "addressPrefixes": ["10.0.0.0/24"]
        },
        "dhcpOptions": {
          "dnsServers": []
        },
        "subnets": [
          {
            "name": "subnet4",
            "properties": {
              "addressPrefix": "10.0.0.0/24",
              "serviceEndpoints": [],
              "delegations": [],
              "privateEndpointNetworkPolicies": "Enabled",
              "privateLinkServiceNetworkPolicies": "Enabled"
            }
          }
        ],
        "virtualNetworkPeerings": [],
        "enableDdosProtection": false,
        "enableVmProtection": false
      }
    },
    {
      "type": "Microsoft.Network/virtualNetworks/subnets",
      "apiVersion": "2020-05-01",
      "name": "[concat(parameters('virtualNetworks_Vnet4_name'),'/subnet4')]",
      "dependsOn": [
        "[resourceId('Microsoft.Network/virtualNetworks',parameters('virtualNetworks_Vnet4_name'))]"
      ],
      "properties": {
        "addressPrefix": "10.0.0.0/24",
        "serviceEndpoints": [],
        "delegations": [],
        "privateEndpointNetworkPolicies": "Enabled",
        "privateLinkServiceNetworkPolicies": "Enabled"
      }
    }
  ]
}
  • Microsoft.Network/virtual networks: create an Azure virtual network.
  • Microsoft.Network/virtual networks/subnets - create a subnet.

Search the "Deploy a custom template" and click it

Create Virtual Network-27

Figure 27.

Click the Build your template in the editor

Create Virtual Network-28

Figure 28.

Copy the ARM template (JSON) file here with parameters and parameter values

Click save button

Create Virtual Network-29

Figure 29.

Select a resource group or create

Click "Create + Review"

Create Virtual Network-30

Figure 30.

ARM template will validate, if it finds any error go back and fix it else we will see "Validation Pass" as shown in Figure 31.

Create Virtual Network-31

Figure 31.

After a few moments, deployment will be complete.

Create Virtual Network-32

Figure 32.

Now to verify the "Vnet4", go to the Virtual Network section and you will find Vnet4

Create Virtual Network-33

Figure 33.

Conclusion

After creating the virtual network, we can add a virtual machine inside this virtual network so these machines can start communicating.

After completing these labs don’t forget to clean your resources if you are not going to use them anymore.


Similar Articles