Skip to content

Commit 3d69a2d

Browse files
author
Michael Bender
committed
freshness
1 parent 089cc63 commit 3d69a2d

7 files changed

+22
-20
lines changed

articles/load-balancer/create-custom-http-health-probe-howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mbender-ms
77
ms.service: azure-load-balancer
88
ms.custom: devx-track-python
99
ms.topic: troubleshooting
10-
ms.date: 05/22/2023
10+
ms.date: 09/30/2024
1111
ms.author: mbender
1212
---
1313

articles/load-balancer/gateway-deploy-dual-stack-load-balancer.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: In this tutorial, you deploy IPv6 configurations to an existing IPv
55
author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: how-to
8-
ms.date: 09/25/2023
8+
ms.date: 09/25/2024
99
ms.author: mbender
1010
ms.custom: template-how-to, devx-track-azurecli, devx-track-azurepowershell
1111
---
@@ -38,29 +38,29 @@ Along with the Gateway Load Balancer, this scenario includes the following alrea
3838

3939
## Add IPv6 address ranges to an existing subnet
4040

41-
This article assumes you already have a Gateway Load Balancer configured for IPv4 traffic, with a corresponding VNET and subnet. In this step, you add IPv6 ranges to your Gateway Load Balancer's VNET and subnet. This range is need when creating an IPv6 frontend configuration for your Gateway Load Balancer using a private IP address from this subnet/VNET.
41+
This article assumes you already have a Gateway Load Balancer configured for IPv4 traffic, with a corresponding virtual network and subnet. In this step, you add IPv6 ranges to your Gateway Load Balancer's virtual network and subnet. This range is need when creating an IPv6 frontend configuration for your Gateway Load Balancer using a private IP address from this subnet/virtual network.
4242
# [PowerShell](#tab/powershell)
4343

4444
```powershell-interactive
4545
46-
#Add IPv6 ranges to the VNET and subnet
47-
#Retrieve the VNET object
46+
#Add IPv6 ranges to the virtual network and subnet
47+
#Retrieve the virtual network object
4848
$rg = Get-AzResourceGroup -ResourceGroupName "myResourceGroup"
4949
$vnet = Get-AzVirtualNetwork -ResourceGroupName $rg.ResourceGroupName -Name "myVNet"
5050
51-
#Add IPv6 prefix to the VNET
51+
#Add IPv6 prefix to the virtual network
5252
$vnet.addressspace.addressprefixes.add("fd00:db8:deca::/48")
5353
54-
#Update the running VNET
54+
#Update the running virtual network
5555
$vnet | Set-AzVirtualNetwork
5656
57-
#Retrieve the subnet object from the local copy of the VNET
57+
#Retrieve the subnet object from the local copy of the virtual network
5858
$subnet= $vnet.subnets[0]
5959
6060
#Add IPv6 prefix to the subnet
6161
$subnet.addressprefix.add("fd00:db8:deca::/64")
6262
63-
#Update the running VNET with the new subnet configuration
63+
#Update the running virtual network with the new subnet configuration
6464
$vnet | Set-AzVirtualNetwork
6565
6666
```
@@ -79,7 +79,7 @@ az network vnet subnet update
7979

8080
## Add an IPv6 frontend to gateway load balancer
8181

82-
Now that you've added IPv6 prefix ranges to your Gateway Load Balancer's subnet and VNET, we can create a new IPv6 frontend configuration on the Gateway Load Balancer, with an IPv6 address from your subnet's range.
82+
Now that you've added IPv6 prefix ranges to your Gateway Load Balancer's subnet and virtual network, we can create a new IPv6 frontend configuration on the Gateway Load Balancer, with an IPv6 address from your subnet's range.
8383

8484
# [PowerShell](#tab/powershell)
8585

articles/load-balancer/ipv6-add-to-existing-vnet-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This article shows how to deploy IPv6 addresses to an existing appl
55
author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: how-to
8-
ms.date: 09/27/2023
8+
ms.date: 09/30/2024
99
ms.author: mbender
1010
ms.custom: devx-track-azurecli, template-how-to
1111
ms.devlang: azurecli
@@ -130,9 +130,9 @@ az network nic ip-config create \
130130
--lb-name myLoadBalancer
131131
```
132132

133-
## View IPv6 dual stack virtual network in Azure portal
133+
## View IPv6 dual-stack virtual network in Azure portal
134134

135-
You can view the IPv6 dual stack virtual network in Azure portal as follows:
135+
You can view the IPv6 dual-stack virtual network in Azure portal as follows:
136136
1. In the portal's search bar, enter **virtual networks** and
137137
1. In the **Virtual Networks** window, select **myVNet**.
138138
1. Select **Connected devices** under **Settings** to view the attached network interfaces. The dual stack virtual network shows the three NICs with both IPv4 and IPv6 configurations.

articles/load-balancer/ipv6-add-to-existing-vnet-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: mbender-ms
77
manager: kumudd
88
ms.service: azure-virtual-network
99
ms.topic: how-to
10-
ms.date: 09/27/2023
10+
ms.date: 09/30/2024
1111
ms.author: mbender
1212
ms.custom: devx-track-azurepowershell, template-how-to
1313
ROBOTS: NOINDEX
@@ -147,9 +147,9 @@ $NIC_3 | Add-AzNetworkInterfaceIpConfig -Name MyIPv6Config -Subnet $vnet.Subnets
147147
$NIC_3 | Set-AzNetworkInterface
148148
```
149149

150-
## View IPv6 dual stack virtual network in Azure portal
150+
## View IPv6 dual-stack virtual network in Azure portal
151151

152-
You can view the IPv6 dual stack virtual network in Azure portal as follows:
152+
You can view the IPv6 dual-stack virtual network in Azure portal as follows:
153153
1. In the portal's search bar, enter **virtual networks** and
154154
1. In the **Virtual Networks** window, select **myVNet**.
155155
1. Select **Connected devices** under **Settings** to view the attached network interfaces. The dual stack virtual network shows the three NICs with both IPv4 and IPv6 configurations.

articles/load-balancer/quickstart-load-balancer-standard-internal-bicep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: quickstart
88
ms.author: mbender
9-
ms.date: 07/22/2024
9+
ms.date: 09/30/2024
1010
ms.custom: template-quickstart, subject-armqs, mode-arm, devx-track-bicep,engagement-fy23
1111
---
1212

articles/load-balancer/quickstart-load-balancer-standard-internal-cli.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This quickstart shows how to create an internal load balancer using
55
author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: quickstart
8-
ms.date: 05/01/2023
8+
ms.date: 09/30/2024
99
ms.author: mbender
1010
ms.custom: mvc, devx-track-azurecli, mode-api, template-quickstart, engagement-fy23
1111
#Customer intent: I want to create a load balancer so that I can load balance internal traffic to VMs.
@@ -95,7 +95,9 @@ az network bastion create \
9595
--name myBastionHost \
9696
--public-ip-address myBastionIP \
9797
--vnet-name myVNet \
98-
--location westus2
98+
--location westus2 \
99+
--only-show-errors \
100+
--no-wait
99101
```
100102

101103
It can take a few minutes for the Azure Bastion host to deploy.

articles/load-balancer/quickstart-load-balancer-standard-public-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: This quickstart shows how to create a public load balancer using th
55
author: mbender-ms
66
ms.service: azure-load-balancer
77
ms.topic: quickstart
8-
ms.date: 09/25/2023
8+
ms.date: 09/30/2024
99
ms.author: mbender
1010
ms.custom: mvc, devx-track-azurecli, mode-api, template-quickstart, engagement-fy23
1111
#Customer intent: I want to create a load balancer so that I can load balance internet traffic to VMs.

0 commit comments

Comments
 (0)