You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -20,7 +20,7 @@ There are two ways of configuring a backend pool:
20
20
21
21
* IP address
22
22
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.
24
24
This article focuses on configuration of backend pools by IP addresses.
25
25
26
26
## Configure backend pool by IP address and virtual network
@@ -83,7 +83,7 @@ $net = @{
83
83
Name = 'myNic'
84
84
ResourceGroupName = 'myResourceGroup'
85
85
Location = 'eastus'
86
-
PrivateIpAddress = '10.0.0.4'
86
+
PrivateIpAddress = '10.0.0.5'
87
87
Subnet = $virtualNetwork.Subnets[0]
88
88
}
89
89
$nic = New-AzNetworkInterface @net
@@ -216,12 +216,12 @@ az vm create \
216
216
* IP based backends can only be used for Standard Load Balancers
217
217
* The backend resources must be in the same virtual network as the load balancer for IP based LBs
218
218
* 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
220
220
* ACI containers aren't currently supported by IP based LBs
221
221
* Load balancers or services such as Application Gateway can’t be placed in the backend pool of the load balancer
222
222
* Inbound NAT Rules can’t be specified by IP address
223
223
* 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
225
225
226
226
>[!Important]
227
227
> 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