Skip to content

Commit a0fd946

Browse files
author
Michael Bender
committed
updated acrolinx above 80
1 parent 3ed4385 commit a0fd946

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/load-balancer/load-balancer-multiple-ip-powershell.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.custom: template-how-to, devx-track-azurepowershell, engagement-fy23
1818
> * [CLI](load-balancer-multiple-ip-cli.md)
1919
> * [PowerShell](load-balancer-multiple-ip-powershell.md)
2020
21-
This article describes how to use Azure Load Balancer with multiple IP addresses on a secondary network interface (NIC). For this scenario, we have two VMs running Windows, each with a primary and a secondary NIC. Each of the secondary NICs has two IP configurations. Each VM hosts both websites contoso.com and fabrikam.com. Each website is bound to one of the IP configurations on the secondary NIC. We use Azure Load Balancer to expose two frontend IP addresses, one for each website, to distribute traffic to the respective IP configuration for the website. This scenario uses the same port number across both frontends, as well as both backend pool IP addresses.
21+
This article describes how to use Azure Load Balancer with multiple IP addresses on a secondary network interface (NIC). For this scenario, we have two VMs running Windows, each with a primary and a secondary NIC. Each of the secondary NICs has two IP configurations. Each VM hosts both websites contoso.com and fabrikam.com. Each website is bound to one of the IP configurations on the secondary NIC. We use Azure Load Balancer to expose two frontend IP addresses, one for each website, to distribute traffic to the respective IP configuration for the website. This scenario uses the same port number across both frontends, and both backend pool IP addresses.
2222

2323
## Steps to load balance on multiple IP configurations
2424

@@ -61,9 +61,9 @@ Follow the steps below to achieve the scenario outlined in this article:
6161
$Subnet1 = Get-AzVirtualNetworkSubnetConfig -Name "mySubnet" -VirtualNetwork $myVnet
6262
```
6363
64-
You do not need to associate the secondary IP configurations with public IPs for the purpose of this tutorial. Edit the command to remove the public IP association part.
64+
You don't need to associate the secondary IP configurations with public IPs in this tutorial. Edit the command to remove the public IP association part.
6565
66-
6. Complete steps 4 through 6 of this article again for VM2. Be sure to replace the VM name to VM2 when doing this. Note that you do not need to create a virtual network for the second VM. You may or may not create a new subnet based on your use case.
66+
6. Complete steps 4 through 6 of this article again for VM2. Be sure to replace the VM name to VM2 when doing this. You don't need to create a virtual network for the second VM. You can create a new subnet based on your use case.
6767
6868
7. Create two public IP addresses and store them in the appropriate variables as shown:
6969
@@ -127,7 +127,7 @@ Follow the steps below to achieve the scenario outlined in this article:
127127
$nic2 | Set-AzNetworkInterface
128128
```
129129
130-
13. Finally, you must configure DNS resource records to point to the respective frontend IP address of the Load Balancer. You may host your domains in Azure DNS. For more information about using Azure DNS with Load Balancer, see [Using Azure DNS with other Azure services](../dns/dns-for-azure-services.md).
130+
13. Finally, you must configure DNS resource records to point to the respective frontend IP address of the Load Balancer. You can host your domains in Azure DNS. For more information about using Azure DNS with Load Balancer, see [Using Azure DNS with other Azure services](../dns/dns-for-azure-services.md).
131131
132132
## Next steps
133133
- Learn more about how to combine load balancing services in Azure in [Using load-balancing services in Azure](../traffic-manager/traffic-manager-load-balancing-azure.md).

includes/load-balancer-nat-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Create NAT gateway
1414

15-
In this section, you'll create a NAT gateway for outbound internet access for resources in the virtual network. For other options for outbound rules, check out [Network Address Translation (SNAT) for outbound connections](/azure/load-balancer/load-balancer-outbound-connections)
15+
In this section, you create a NAT gateway for outbound internet access for resources in the virtual network. For other options for outbound rules, check out [Network Address Translation (SNAT) for outbound connections](/azure/load-balancer/load-balancer-outbound-connections)
1616

1717
1. Sign in to the [Azure portal](https://portal.azure.com).
1818

@@ -26,7 +26,7 @@ In this section, you'll create a NAT gateway for outbound internet access for re
2626
| ------- | ----- |
2727
| **Project details** | |
2828
| Subscription | Select your subscription. |
29-
| Resource group | Select **Create new**. </br> Enter **load-balancer-rg** in Name. </br> Select **OK**. |
29+
| Resource group | Select **Create new**.</br> Enter **load-balancer-rg** in Name.</br> Select **OK**. |
3030
| **Instance details** | |
3131
| NAT gateway name | Enter **lb-nat-gateway**. |
3232
| Region | Select **East US**. |

0 commit comments

Comments
 (0)