Skip to content

Commit 269d014

Browse files
authored
Merge pull request #49466 from KumudD/GHissue11280
Update: Create and manage Standard Load Balancer
2 parents f2368d6 + 6b58af8 commit 269d014

File tree

4 files changed

+114
-137
lines changed

4 files changed

+114
-137
lines changed
165 KB
Loading

articles/load-balancer/quickstart-load-balancer-standard-public-portal.md

Lines changed: 27 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.devlang: na
1515
ms.topic: quickstart
1616
ms.tgt_pltfrm: na
1717
ms.workload: infrastructure-services
18-
ms.date: 03/20/18
18+
ms.date: 08/21/2018
1919
ms.author: kumud
2020
ms.custom: mvc
2121
---
@@ -26,24 +26,29 @@ Load balancing provides a higher level of availability and scale by spreading in
2626

2727
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2828

29-
## Log in to Azure
29+
## Sign in to Azure
3030

31-
Log in to the Azure portal at [http://portal.azure.com](http://portal.azure.com).
31+
Sign in to the Azure portal at [http://portal.azure.com](http://portal.azure.com).
3232

3333
## Create a public load balancer
3434

3535
In this section, you create a public load balancer that helps load balance virtual machines. Standard Load Balancer only supports a Standard Public IP address. When you create a Standard Load Balancer, and you must also create a new Standard Public IP address that is configured as the frontend (named as *LoadBalancerFrontend* by default) for the Standard Load Balancer.
3636

3737
1. On the top left-hand side of the screen, click **Create a resource** > **Networking** > **Load Balancer**.
38-
2. In the **Create a load balancer** page enter these values for the load balancer:
39-
- *myLoadBalancer* - for the name of the load balancer.
40-
- **Public** - for the type of the load balancer.
41-
- *myPublicIP* - for the **New** Public IP that you create.
42-
- *myResourceGroupSLB* - for the name of the **New** resource group that you select to create.
43-
- **westeurope** - for the location.
44-
3. Click **Create** to create the load balancer.
45-
46-
![Create a load balancer](./media/load-balancer-standard-public-portal/1a-load-balancer.png)
38+
2. In the **Create load balancer** page, enter or select the following information, accept the defaults for the remaining settings, and then select **Create**:
39+
40+
| Setting | Value |
41+
| --- | --- |
42+
| Name | *myLoadBalancer* |
43+
| Type | Public |
44+
| SKU | Standard |
45+
| Public IP address | Select **Create new** and type *myPublicIP* in the text box. The Standard SKU for the Public IP address is selected by default. For **Availability zone**, select **Zone-redundant**. |
46+
| Subscription | Select your subscription. |
47+
|Resource group | Select **Create new**, and then type *myResourceGroupSLB*. |
48+
| Location | Select **West Europe**. |
49+
50+
51+
![Create a load balancer](./media/load-balancer-standard-public-portal/create-load-balancer.png)
4752

4853

4954
## Create backend servers
@@ -63,18 +68,18 @@ In this section, you create a virtual network, create two virtual machines for t
6368

6469
1. On the top left-hand side of the screen, click **New** > **Compute** > **Windows Server 2016 Datacenter** and enter these values for the virtual machine:
6570
- *myVM1* - for the name of the virtual machine.
66-
- *azureuser* - for the administrator user name.
6771
- *myResourceGroupSLB* - for **Resource group**, select **Use existing**, and then select *myResourceGroupSLB*.
6872
2. Click **OK**.
6973
3. Select **DS1_V2** for the size of the virtual machine, and click **Select**.
7074
4. Enter these values for the VM settings:
71-
- *myAvailabilitySet* - for the name of the new Availability set that you create.
72-
- *myVNet* - ensure it is selected as the virtual network.
73-
- *myBackendSubnet* - ensure it is selected as the subnet.
74-
- *myNetworkSecurityGroup* - for the name of the new network security group (firewall) that you must create.
75+
1. Ensure that *myVNet* is selected as the virtual network, and *myBackendSubnet* is selected as the subnet.
76+
2. For **Public IP address**, in the **Create Public IP address** pane, select **Standard**, and then select **OK**.
77+
3. For **Network Security Group**, select **Advanced**, and then do the following:
78+
1. Select *Network security group (firewall), and the **Choose network security group** page, select **Create new**.
79+
2. In the **Create network security group** page, for **Name**, enter *myNetworkSecurityGroup*, and then select **OK**.
7580
5. Click **Disabled** to disable boot diagnostics.
7681
6. Click **OK**, review the settings on the summary page, and then click **Create**.
77-
7. Create a second VM, named, *VM2* with *myAvailibilityset* as the Availability set, *myVnet* as its virtual network, *myBackendSubnet* and its subnet, and **myNetworkSecurityGroup* as its network security group using steps 1-6.
82+
7. Using steps 1-6, create a second VM, named, *VM2* with *myAvailibilityset* as the Availability set, *myVnet* as its virtual network, *myBackendSubnet* and its subnet, and **myNetworkSecurityGroup* as its network security group.
7883

7984
### Create NSG rules
8085

@@ -93,17 +98,6 @@ In this section, you create NSG rules to allow inbound connections using HTTP an
9398
- *Allow HTTP* - for description
9499
4. Click **OK**.
95100

96-
![Create a virtual network](./media/load-balancer-standard-public-portal/8-load-balancer-nsg-rules.png)
97-
5. Repeat steps 2 to 4 to create another rule named *myRDPRule* to allow for an inbound RDP connection using port 3389 with the following values:
98-
- *Service Tag* - for **Source**.
99-
- *Internet* - for **Source service tag**
100-
- *3389* - for **Destination port ranges**
101-
- *TCP* - for **Protocol**
102-
- *Allow* - for **Action**
103-
- *200* for **Priority**
104-
- *myRDPRule* for name
105-
- *Allow RDP* - for description
106-
107101
### Install IIS
108102

109103
1. Click **All resources** in the left-hand menu, and then from the resources list click **myVM1** that is located in the *myResourceGroupLB* resource group.
@@ -120,7 +114,7 @@ In this section, you create NSG rules to allow inbound connections using HTTP an
120114

121115
## Create load balancer resources
122116

123-
In this section, you configure load balancer settings for a backend address pool and a health probe, and specify load balancer and NAT rules.
117+
In this section, you configure load balancer settings for a backend address pool and a health probe, and specify a load balancer rule.
124118

125119

126120
### Create a backend address pool
@@ -130,14 +124,11 @@ To distribute traffic to the VMs, a backend address pool contains the IP address
130124
1. Click **All resources** in the left-hand menu, and then click **myLoadBalancer** from the resources list.
131125
2. Under **Settings**, click **Backend pools**, then click **Add**.
132126
3. On the **Add a backend pool** page, do the following:
133-
- For name, type *myBackEndPool, as the name for your backend pool.
134-
- For **Associated to**, from the drop-down menu, click **Availability set**
135-
- For **Availability set**, click, **myAvailabilitySet**.
136-
- Click **Add a target network IP configuration** to add each virtual machine (*myVM1* & *myVM2*) that you created to the backend pool.
127+
- For name, type *myBackendPool*, as the name for your backend pool.
128+
- For **Virtual network**, select *myVNet*.
129+
- Add *myVM1* and *my VM2* under **Virtual Machine** along with their corresponding IP addresses, and then select **Add**.
137130
- Click **OK**.
138131

139-
![Adding to the backend address pool - ](./media/load-balancer-standard-public-portal/3-load-balancer-backend-02.png)
140-
141132
3. Check to make sure your load balancer backend pool setting displays both the VMs **VM1** and **VM2**.
142133

143134
### Create a health probe

articles/load-balancer/tutorial-load-balancer-basic-internal-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Tutorial:Create a public Basic Load Balancer - Azure portal | Microsoft Docs
2+
title: Tutorial - Create a public Basic Load Balancer - Azure portal | Microsoft Docs
33
description: This tutorial shows you how to create an internal Basic Load Balancer by using the Azure portal.
44
services: load-balancer
55
documentationcenter: na

0 commit comments

Comments
 (0)