Create a VM in Azure Portal

Create a VM in Azure portal Login to shell.azure.com (if this the first time you are logging in then it will ask to create a storage account.) run the below commands to create a VM az vm create –resource-group HUBRG01 –name WEB1 –image UbuntuLTS –location eastus –vnet-name HUBVNET01 –subnet HUBSUBNET01 –admin-username rootadmin –admin-password “Password” –nsg…

Azure Load Balancer

Azure load balancer Azure Load balancer will share the load among all the webservers by using round-robin method and it will not inspect the packets. It will use Layer 4(Transport Layer) in OSI model. Note: It will works as AWS NLB. Below are the OSI Layers: We have total 7 layers. L7 – Application Layer…