Skip to content

Commit bcb49a1

Browse files
Merge pull request #226231 from mbender-ms/lb-US62382
Load Balancer - Update backend-pool-management.md
2 parents 23c6c37 + baae18c commit bcb49a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/load-balancer/backend-pool-management.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ services: load-balancer
66
author: mbender-ms
77
ms.service: load-balancer
88
ms.topic: how-to
9-
ms.date: 2/17/2022
9+
ms.date: 02/03/2023
1010
ms.author: mbender
11-
ms.custom: devx-track-azurepowershell, devx-track-azurecli
11+
ms.custom: devx-track-azurepowershell, devx-track-azurecli, FY23 content-maintenance
1212
---
1313
# Backend pool management
1414

@@ -20,7 +20,7 @@ There are two ways of configuring a backend pool:
2020

2121
* IP address
2222

23-
To preallocate a backend pool with an IP address range that later will contain virtual machines and virtual machine scale sets, configure the pool by IP address and virtual network ID.
23+
To preallocate a backend pool with an IP address range that later will contain virtual machines and Virtual Machine Scale Sets, configure the pool by IP address and virtual network ID.
2424
This article focuses on configuration of backend pools by IP addresses.
2525

2626
## Configure backend pool by IP address and virtual network
@@ -83,7 +83,7 @@ $net = @{
8383
Name = 'myNic'
8484
ResourceGroupName = 'myResourceGroup'
8585
Location = 'eastus'
86-
PrivateIpAddress = '10.0.0.4'
86+
PrivateIpAddress = '10.0.0.5'
8787
Subnet = $virtualNetwork.Subnets[0]
8888
}
8989
$nic = New-AzNetworkInterface @net
@@ -216,12 +216,12 @@ az vm create \
216216
* IP based backends can only be used for Standard Load Balancers
217217
* The backend resources must be in the same virtual network as the load balancer for IP based LBs
218218
* A load balancer with IP based Backend Pool can’t function as a Private Link service
219-
* [Private endpoint resources](../private-link/private-endpoint-overview.md) can't be placed in a IP based backend pool
219+
* [Private endpoint resources](../private-link/private-endpoint-overview.md) can't be placed in an IP based backend pool
220220
* ACI containers aren't currently supported by IP based LBs
221221
* Load balancers or services such as Application Gateway can’t be placed in the backend pool of the load balancer
222222
* Inbound NAT Rules can’t be specified by IP address
223223
* You can configure IP based and NIC based backend pools for the same load balancer. You can’t create a single backend pool that mixes backed addresses targeted by NIC and IP addresses within the same pool.
224-
* A virtual machine in the same virtual network as an internal load balancer cannot access the frontend of the ILB and its backend VMs simultaneously
224+
* A virtual machine in the same virtual network as an internal load balancer can't access the frontend of the ILB and its backend VMs simultaneously
225225

226226
>[!Important]
227227
> When a backend pool is configured by IP address, it will behave as a Basic Load Balancer with default outbound enabled. For secure by default configuration and applications with demanding outbound needs, configure the backend pool by NIC.

0 commit comments

Comments
 (0)