Skip to content

Commit fad2df6

Browse files
committed
Convert article to pivot zones
1 parent c0a19ff commit fad2df6

10 files changed

+596
-590
lines changed

articles/load-balancer/.openpublishing.redirection.load-balancer.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,16 @@
394394
"source_path_from_root": "/articles/load-balancer/tutorial-gateway-powershell.md",
395395
"redirect_url": "/azure/load-balancer/tutorial-create-gateway-load-balancer",
396396
"redirect_document_id": false
397+
},
398+
{
399+
"source_path_from_root": "/articles/load-balancer/load-balancer-multiple-ip-cli.md",
400+
"redirect_url": "/azure/load-balancer/load-balancer-multiple-ip",
401+
"redirect_document_id": false
402+
},
403+
{
404+
"source_path_from_root": "/articles/load-balancer/load-balancer-multiple-ip-powershell.md",
405+
"redirect_url": "/azure/load-balancer/load-balancer-multiple-ip",
406+
"redirect_document_id": false
397407
}
398408
]
399409
}

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

Lines changed: 12 additions & 544 deletions
Large diffs are not rendered by default.

articles/load-balancer/load-balancer-multiple-ip-cli.md renamed to includes/load-balancer-multi-ip-cli.md

Lines changed: 11 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,15 @@
11
---
2-
title: Load balancing on multiple IP configurations using Azure CLI
3-
titleSuffix: Azure Load Balancer
4-
description: Learn how to assign multiple IP addresses to a virtual machine using Azure CLI.
5-
services: virtual-network
6-
author: mbender-ms
7-
ms.service: azure-load-balancer
8-
ms.topic: how-to
9-
ms.date: 06/28/2024
10-
ms.author: mbender
11-
ms.custom: template-how-to, devx-track-azurecli
2+
title: include file
3+
description: include file
4+
services: networking
5+
author: mbender-ms
6+
ms.service: networking
7+
ms.topic: include
8+
ms.date: 03/21/2025
9+
ms.author: mbender
10+
ms.custom: include file
1211
---
1312

14-
# Load balancing on multiple IP configurations using Azure CLI
15-
16-
> [!div class="op_single_selector"]
17-
> * [Portal](load-balancer-multiple-ip.md)
18-
> * [CLI](load-balancer-multiple-ip-cli.md)
19-
> * [PowerShell](load-balancer-multiple-ip-powershell.md)
20-
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.
22-
2313
## Steps to load balance on multiple IP configurations
2414

2515
To achieve the scenario outlined in this article complete the following steps:
@@ -111,8 +101,6 @@ To achieve the scenario outlined in this article complete the following steps:
111101
az vm create --resource-group contosofabrikam --name VM2 --location westcentralus --os-type linux --nic-names VM2Nic1,VM2Nic2 --vnet-name VNet1 --vnet-subnet-name Subnet1 --availability-set myAvailabilitySet --vm-size Standard_DS3_v2 --storage-account-name mystorageaccount2 --image-urn canonical:UbuntuServer:16.04.0-LTS:latest --admin-username <your username> --admin-password <your password>
112102
```
113103
114-
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).
104+
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](/azure/dns/dns-for-azure-services)
105+
115106
116-
## Next steps
117-
- 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).
118-
- Learn how you can use different types of logs in Azure to manage and troubleshoot load balancer in [Log analytics for Azure Load Balancer](./monitor-load-balancer.md).

0 commit comments

Comments
 (0)