Skip to main content

Implementing and Managing Azure Network

Important Terms


  1. Virtual Network (VNET)
An Azure Virtual Network (VNet) is a representation of your own network in the cloud. It is a logical isolation of the Azure cloud dedicated to your subscription.
  1. Subnet
A subnetwork or subnet is a logical subdivision of an IP network. The practice of dividing a network into two or more networks is called subnetting. Computers that belong to a subnet are addressed with an identical most-significant bit-group in their IP addresses.
  1. Private IP Address
A private IP address is a non-Internet facing IP address on an internal network. Private IP addresses are provided by network devices, such as routers, using network address translation (NAT).
  1. Public IP Address
A public IP address is an IP address that can be accessed over the Internet. Like postal address used to deliver a postal mail to your home, a public IP address is the globally unique IP address assigned to a computing device. Your public IP address can be found at ‘show my IP Address’ search on google.
  1. Network Security Group (NSG)
A network security group (NSG) is a networking filter (firewall) containing a list of security rules allowing or denying network traffic to resources connected to Azure VNets. These rules can manage both inbound and outbound traffic.

Implementing and Managing Azure Network

Demo 1: Designing VNET and subnet


Step 1: In the Portal, Go to: + New > Networking > Click on Virtual Network



Step 2: In the Virtual Network blade, fill the details as shown below and Click Create:




Step 3: Once deployed, an overview window of your VNet will be displayed. There click on the subnets option at the left side:




Step 4: Once you click on the + Subnet, configure the subnet as shown below:




Step 5: Once you click on the + Subnet, configure the subnet as shown below:




Step 6: You can now find the two subnets.




Demo 2: Configure Static and Dynamic Public IP Addresses


Step 1: In the Portal, go to: + Create a resource - > Search for Public IP Address > Click on Create:


Step 2: Once you click Create, configure the Public IP address as shown below on the blade:

 

Demo 3: Design User-Defined Routes (UDRs)


Step 1: In the Portal, go to: + New > Networking > Route Table




Step 2: In the New Route Table blade, fill the Subscription, Resource Group and Location details:




Step 3: In the Route Table window, Select Subnets just like you did for NSG > Select the desired Subnet > Click OK:





Step 4: In the Route Table window, Select the Routes option in the menu > Click on + Add > Configure > Click OK:





Demo 4: Setting up Network Security Groups (NSGs)




Step 1: In the Portal, go to: +New > Networking > Click on Networking Security Group


Step 2: Once you click on NSG, add the NSG to a Resource Group as shown below and click Create:

 
Step 3: In the NSG window, Select Subnets in the menu > Click on +Associate to select a subnet:

 
Step 4: In the +Associate blade, Select Virtual Network in which the Subnet is present > Click on desired Subnet > OK:






Step 5: Once you associate the Subnet, click on the Inbound Rules in the menu to configure them. To create an Inbound Security rule specifically for the HTTP traffic, click on +Add in Inbound Security rules blade:




Step 7: Once you click +Add, configure the rule as shown below:




Thank you for Visiting our blog.

For Azure, AWS and Google cloud training classes, click here

Below are Some awesome books related to cloud you must have in your bag.


Comments

Popular posts from this blog

SAN - STORAGE AREA NETWORK - where to start (for beginner)

Hi, Welcome to our blog. This article focuses on basics of SAN which will help you to understand role of SAN in Data Centers and in cloud environment. SAN (Storage Area Network) Definition - It is a network which provides faster input output of data with redundancy and also provides space to store data Advantages - 1. Faster IO ....(Min. 1Gbps - Max 32 Gbps speed) Note- Gbps (Giga Bit Per Second) it is unit to major speed of SAN infrastructure. 2. Redundancy 3. Security 4. Centralized Management of data 5. Serverless Backup 6. LAN Free Backup 7. Scalability 8. N. number of server connection 9. Heterogeneous data Storage 10. BLOCK Level Access 11. High Availability Disadvantage - Costly - compared any other IT technologies this technology is costly SAN it is heart of data center. For any customer data is very important and SAN meets all requirements of the customer. Without SAN we can not imagine Data center even cloud also. Now a Days Cloud Technolo...

How to create Azure Virtual Machine

Hi, Welcome to Our Blog. Before Creating Azure Virtual Machine, Lets understand few important terms. Azure Virtual Machine: Virtual machines are based on computer architectures and provide functionality of a physical computer. Their implementations may involve specialized hardware, software, or a combination. Azure Virtual Machines gives you the flexibility of virtualisation for a wide range of computing solutions—development and testing, running applications and extending your datacenter. It is the freedom of open-source software configured the way you need it. It is as if it was another rack in your datacenter, giving you the power to deploy an application in seconds instead of weeks. Azure Virtual Network: Azure Virtual Network enables many types of Azure resources, such as Azure Virtual Machines (VM), to securely communicate with each other, the internet, and on-premises networks. A virtual network is scoped to a single region; however, multiple virtual networ...

Azure Load balancer

Important Terms: Azure load balancer overview Load balancing provides a higher level of availability by spreading incoming requests across multiple virtual machines. An Azure load balancer is a Layer-4 (TCP, UDP) load balancer that provides high availability by distributing incoming traffic among healthy VMs. A load balancer health probe monitors a given port on each VM and only distributes traffic to an operational VM. You define a front-end IP configuration that contains one or more public IP addresses. This front-end IP configuration allows your load balancer and applications to be accessible over the Internet. Virtual machines connect to a load balancer using their virtual network interface card (NIC). To distribute traffic to the VMs, a back-end address pool contains the IP addresses of the virtual (NICs) connected to the load balancer. To control the flow of traffic, you define load balancer rules for specific ports and protocols that map to your VMs. ...