title | description | services | documentationcenter | author | manager | editor | tags | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create an Internet-facing load balancer - Azure portal | Microsoft Docs |
Learn how to create an Internet-facing load balancer in Resource Manager using the Azure portal |
load-balancer |
na |
anavinahar |
narayan |
azure-resource-manager |
aa9d26ca-3d8a-4a99-83b7-c410dd20b9d0 |
load-balancer |
na |
hero-article |
na |
infrastructure-services |
09/25/2017 |
annahar |
[!div class="op_single_selector"]
[!INCLUDE load-balancer-basic-sku-include.md]
[!INCLUDE load-balancer-get-started-internet-intro-include.md]
[!INCLUDE azure-arm-classic-important-include]
This article covers the Resource Manager deployment model.
[!INCLUDE load-balancer-get-started-internet-scenario-include.md]
This covers the sequence of individual tasks that have to be done to create a load balancer and explain in detail what is being done to accomplish the goal.
You need to create and configure the following objects to deploy a load balancer.
- Front-end IP configuration - contains public IP addresses for incoming network traffic.
- Back-end address pool - contains network interfaces (NICs) for the virtual machines to receive network traffic from the load balancer.
- Load balancing rules - contains rules mapping a public port on the load balancer to port in the back-end address pool.
- Inbound NAT rules - contains rules mapping a public port on the load balancer to a port for a specific virtual machine in the back-end address pool.
- Probes - contains health probes used to check availability of virtual machines instances in the back-end address pool.
You can get more information about load balancer components with Azure Resource Manager at Azure Resource Manager support for Load Balancer.
Important
This example assumes you have a virtual network called myVNet. Refer to create virtual network to do this. It also assumes there is a subnet within myVNet called LB-Subnet-BE and two VMs called web1 and web2 respectively within the same availability set called myAvailSet in myVNet. Refer to this link to create VMs.
-
From a browser navigate to the Azure portal: http://portal.azure.com and login with your Azure account.
-
On the top left-hand side of the screen select New > Networking > Load Balancer.
-
In the Create load balancer blade, type a name for your load balancer. Here it is called myLoadBalancer.
-
Under Type, select Public.
-
Under Public IP address, create a new public IP called myPublicIP.
-
Under Resource Group, select myRG. Then select an appropriate Location, and then click OK. The load balancer then starts to deploy and takes a few minutes to successfully complete deployment.
-
Once your load balancer has successfully deployed, select it from within your resources. Under settings, select Backend Pools. Type a name for your backend pool. Then click on the Add button toward the top of the blade that shows up.
-
Click on Add a virtual machine in the Add backend pool blade. Select Choose an availability set under Availability set and select myAvailSet. Next, select Choose the virtual machines under the Virtual Machines section in the blade and click on web1 and web2, the two VMs created for load balancing. Ensure that both have blue check marks to the left as shown in the image below. Then, click Select in that blade followed by OK in the Choose Virtual machines blade and then OK in the Add backend pool blade.
-
Check to make sure your notifications drop down list has an update regarding saving the load balancer backend pool in addition to updating the network interface for both the VMs web1 and web2.
-
Create a health probe.
Under Settings of your load balancer, select Probes. Then click Add located at the top of the blade.
There are two ways to configure a probe: HTTP or TCP. This example shows HTTP, but TCP can be configured in a similar manner. Update the necessary information. As mentioned, myLoadBalancer load balances traffic on Port 80. The path selected is HealthProbe.aspx, Interval is 15 seconds, and Unhealthy threshold is 2. Once finished, click OK to create the probe.
Hover your pointer over the 'i' icon to learn more about these individual configurations and how they can be changed to cater to your requirements.
-
Create a load balancer rule.
Click on Load balancing rules in the Settings section of your load balancer. In the new blade, click on Add. Name your rule. Here, it is HTTP. Choose the frontend port and Backend port. Here, 80 is chosen for both. Choose LB-backend as your Backend pool and the previously created HealthProbe as the Probe. Other configurations can be set according to your requirements. Then click OK to save the load balancing rule.
-
Create inbound NAT rules
Click on Inbound NAT rules under the settings section of your load balancer. In the new blade that, click Add. Then name your inbound NAT rule. Here it is called inboundNATrule1. The destination should be the Public IP previously created. Select Custom under Service and select the protocol you would like to use. Here TCP is selected. Enter the port, 3441, and the Target port, in this case, 3389. then click OK to save this rule.
Once the first rule is created, repeat this step for the second inbound NAT rule called inboundNATrule2 from port 3442 to Target port 3389.
To delete a load balancer, select the load balancer you want to remove. In the Load Balancer blade, click on Delete located at the top of the blade. Then select Yes when prompted.
Get started configuring an internal load balancer