Skip to content

Commit b945c7a

Browse files
authored
Merge pull request #105733 from irenehua/patch-13
Update upgrade-basic-standard.md
2 parents 9e2918e + edb4753 commit b945c7a

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

articles/load-balancer/upgrade-InternalBasic-To-PublicStandard.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ ms.author: irenehua
1212
# Upgrade Azure Internal Load Balancer - Outbound Connection Required
1313
[Azure Standard Load Balancer](load-balancer-overview.md) offers a rich set of functionality and high availability through zone redundancy. To learn more about Load Balancer SKU, see [comparison table](https://docs.microsoft.com/azure/load-balancer/concepts-limitations#skus). Since Standard Internal Load Balancer does not provide outbound connection, we provide a solution to create a Standard Public Load Balancer instead.
1414

15-
There are three stages in a upgrade:
15+
There are four stages in a upgrade:
1616

1717
1. Migrate the configuration to Standard Public Load Balancer
1818
2. Add VMs to backend pools of Standard Public Load Balancer
19-
3. Set up NSG rules for Subnet/VMs that should be refrained from/to the Internet
19+
3. Create an outbound rule on the Load Balancer for outbound connection
20+
4. Set up NSG rules for Subnet/VMs that should be refrained from/to the Internet
2021

2122
This article covers configuration migration. Adding VMs to backend pools may vary depending on your specific environment. However, some high-level, general recommendations [are provided](#add-vms-to-backend-pools-of-standard-load-balancer).
2223

@@ -78,7 +79,7 @@ To run the script:
7879
**Example**
7980

8081
```azurepowershell
81-
./AzurePublicLBUpgrade.ps1 -oldRgName "test_publicUpgrade_rg" -oldLBName "LBForPublic" -newrgName "test_userInput3_rg" -newlocation "centralus" -newLbName "LBForUpgrade"
82+
AzurePublicLBUpgrade.ps1 -oldRgName "test_publicUpgrade_rg" -oldLBName "LBForPublic" -newrgName "test_userInput3_rg" -newlocation "centralus" -newLbName "LBForUpgrade"
8283
```
8384

8485
### Add VMs to backend pools of Standard Load Balancer
@@ -105,6 +106,12 @@ Here are a few scenarios of how you add VMs to backend pools of the newly create
105106
* **Creating new VMs to add to the backend pools of the newly created Standard Public Load Balancer**.
106107
* More instructions on how to create VM and associate it with Standard Load Balancer can be found [here](https://docs.microsoft.com/azure/load-balancer/quickstart-load-balancer-standard-public-portal#create-virtual-machines).
107108

109+
### Create an outbound rule for outbound connection
110+
111+
Follow the [instructions](https://docs.microsoft.com/azure/load-balancer/configure-load-balancer-outbound-portal#create-outbound-rule-configuration) to create an outbound rule so you can
112+
* Define outbound NAT from scratch.
113+
* Scale and tune the behavior of existing outbound NAT.
114+
108115
### Create NSG rules for VMs which to refrain communication from or to the Internet
109116
If you would like to refrain Internet traffic from reaching to your VMs, you can create an [NSG rule](https://docs.microsoft.com/azure/virtual-network/manage-network-security-group) on the Network Interface of the VMs.
110117

articles/load-balancer/upgrade-basic-standard.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ ms.author: irenehua
1212
# Upgrade Azure Public Load Balancer
1313
[Azure Standard Load Balancer](load-balancer-overview.md) offers a rich set of functionality and high availability through zone redundancy. To learn more about Load Balancer SKU, see [comparison table](https://docs.microsoft.com/azure/load-balancer/concepts-limitations#skus).
1414

15-
There are two stages in a upgrade:
15+
There are three stages in a upgrade:
1616

1717
1. Migrate the configuration
1818
2. Add VMs to backend pools of Standard Load Balancer
19+
3. Create an outbound rule on the load balancer for outbound connection
1920

2021
This article covers configuration migration. Adding VMs to backend pools may vary depending on your specific environment. However, some high-level, general recommendations [are provided](#add-vms-to-backend-pools-of-standard-load-balancer).
2122

@@ -77,7 +78,7 @@ To run the script:
7778
**Example**
7879

7980
```azurepowershell
80-
./AzurePublicLBUpgrade.ps1 -oldRgName "test_publicUpgrade_rg" -oldLBName "LBForPublic" -newrgName "test_userInput3_rg" -newlocation "centralus" -newLbName "LBForUpgrade"
81+
AzurePublicLBUpgrade.ps1 -oldRgName "test_publicUpgrade_rg" -oldLBName "LBForPublic" -newrgName "test_userInput3_rg" -newlocation "centralus" -newLbName "LBForUpgrade"
8182
```
8283

8384
### Add VMs to backend pools of Standard Load Balancer
@@ -104,6 +105,12 @@ Here are a few scenarios of how you add VMs to backend pools of the newly create
104105
* **Creating new VMs to add to the backend pools of the newly created Standard Public Load Balancer**.
105106
* More instructions on how to create VM and associate it with Standard Load Balancer can be found [here](https://docs.microsoft.com/azure/load-balancer/quickstart-load-balancer-standard-public-portal#create-virtual-machines).
106107

108+
### Create an outbound rule for outbound connection
109+
110+
Follow the [instructions](https://docs.microsoft.com/azure/load-balancer/configure-load-balancer-outbound-portal#create-outbound-rule-configuration) to create an outbound rule so you can
111+
* Define outbound NAT from scratch.
112+
* Scale and tune the behavior of existing outbound NAT.
113+
107114
## Common questions
108115

109116
### Are there any limitations with the Azure PowerShell script to migrate the configuration from v1 to v2?

articles/load-balancer/upgrade-basicInternal-standard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To run the script:
7676
**Example**
7777

7878
```azurepowershell
79-
./AzureILBUpgrade.ps1 -rgName "test_InternalUpgrade_rg" -oldLBName "LBForInternal" -newlocation "centralus" -newLbName "LBForUpgrade"
79+
AzureILBUpgrade.ps1 -rgName "test_InternalUpgrade_rg" -oldLBName "LBForInternal" -newlocation "centralus" -newLbName "LBForUpgrade"
8080
```
8181

8282
### Add VMs to backend pools of Standard Load Balancer

0 commit comments

Comments
 (0)