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
Copy file name to clipboardExpand all lines: articles/virtual-network/scripts/virtual-network-powershell-sample-ipv6-dual-stack-standard-load-balancer.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ ms.author: allensu
9
9
ms.custom: devx-track-azurepowershell
10
10
---
11
11
12
-
# Configure IPv6 frontend in virtual network script sample with Standard Load Balancer (preview)
12
+
# Configure IPv6 frontend in virtual network script sample with an Azure Standard Load Balancer
13
13
14
-
This article shows you how to deploy a dual stack (IPv4 + IPv6) application in Azure that includes a dual stack virtual network with a dual stack subnet, a load balancer with dual (IPv4 + IPv6) front-end configurations, VMs with NICs that have a dual IP configuration, dual network security group rules, and dual public IPs.
14
+
This article outlines the necessary steps to create a dual stack virtual network, load balancer with dual (IPv4 + IPv6) front-end configurations, VMs with NICs that have a dual IP configuration, dual network security group rules, and dual public IPs.
15
15
16
16
## Prerequisites
17
17
@@ -21,7 +21,7 @@ This article shows you how to deploy a dual stack (IPv4 + IPv6) application in A
21
21
22
22
- Sign in to Azure PowerShell and ensure you've selected the subscription with which you want to use this feature. For more information, see [Sign in with Azure PowerShell](/powershell/azure/authenticate-azureps).
23
23
24
-
- Ensure your `Az.Network` module is 4.3.0 or later. To verify the installed module, use the command Get-InstalledModule -Name "Az.Network". If the module requires an update, use the command `Update-Module -Name Az.Network` if necessary.
24
+
- Ensure your `Az.Network` module is 4.3.0 or later. To verify the installed module, use the command `Get-InstalledModule -Name Az.Network`. If the module requires an update, use the command `Update-Module -Name Az.Network` if necessary.
25
25
26
26
If you choose to install and use PowerShell locally, this article requires the Azure PowerShell module version 5.4.1 or later. Run `Get-Module -ListAvailable Az` to find the installed version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-Az-ps). If you're running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
27
27
@@ -236,12 +236,12 @@ This script uses the following commands to create a resource group, virtual mach
236
236
|[New-AzVirtualNetwork](/powershell/module/az.network/new-azvirtualnetwork)| Creates an Azure virtual network and subnet. |
237
237
|[New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress)| Creates a public IP address with a static IP address and an associated DNS name. |
238
238
|[New-AzLoadBalancer](/powershell/module/az.network/new-azloadbalancer)| Creates an Azure load balancer. |
239
-
|[New-AzLoadBalancerProbeConfig](/powershell/module/az.network/new-azloadbalancerprobeconfig)| Creates a load balancer probe. A load balancer probe is used to monitor each VM in the load balancer set. If any VM becomes inaccessible, traffic is not routed to the VM. |
240
-
|[New-AzLoadBalancerRuleConfig](/powershell/module/az.network/new-azloadbalancerruleconfig)| Creates a load balancer rule. In this sample, a rule is created for port 80. As HTTP traffic arrives at the load balancer, it is routed to port 80 one of the VMs in the load balancer set. |
239
+
|[New-AzLoadBalancerProbeConfig](/powershell/module/az.network/new-azloadbalancerprobeconfig)| Creates a load balancer probe. A load balancer probe is used to monitor each VM in the load balancer set. If any VM becomes inaccessible, traffic isn't routed to the VM. |
240
+
|[New-AzLoadBalancerRuleConfig](/powershell/module/az.network/new-azloadbalancerruleconfig)| Creates a load balancer rule. In this sample, a rule is created for port 80. As HTTP traffic arrives at the load balancer, it's routed to port 80 one of the VMs in the load balancer set. |
241
241
|[New-AzNetworkSecurityGroup](/powershell/module/az.network/new-aznetworksecuritygroup)| Creates a network security group (NSG), which is a security boundary between the internet and the virtual machine. |
242
242
|[New-AzNetworkSecurityRuleConfig](/powershell/module/az.network/new-aznetworksecurityruleconfig)| Creates an NSG rule to allow inbound traffic. In this sample, port 22 is opened for SSH traffic. |
243
243
|[New-AzNetworkInterface](/powershell/module/az.network/new-aznetworkinterface)| Creates a virtual network card and attaches it to the virtual network, subnet, and NSG. |
244
-
|[New-AzAvailabilitySet](/powershell/module/az.compute/new-azavailabilityset)| Creates an availability set. Availability sets ensure application uptime by spreading the virtual machines across physical resources such that if failure occurs, the entire set is not affected. |
244
+
|[New-AzAvailabilitySet](/powershell/module/az.compute/new-azavailabilityset)| Creates an availability set. Availability sets ensure application uptime by spreading the virtual machines across physical resources such that if failure occurs, the entire set isn't affected. |
245
245
|[New-AzVMConfig](/powershell/module/az.compute/new-azvmconfig)| Creates a VM configuration. This configuration includes information such as VM name, operating system, and administrative credentials. The configuration is used during VM creation. |
246
246
|[New-AzVM](/powershell/module/az.compute/new-azvm)| Creates the virtual machine and connects it to the network card, virtual network, subnet, and NSG. This command also specifies the virtual machine image to be used and administrative credentials. |
247
247
|[Remove-AzResourceGroup](/powershell/module/az.resources/remove-azresourcegroup)| Deletes a resource group including all nested resources. |
@@ -250,4 +250,4 @@ This script uses the following commands to create a resource group, virtual mach
250
250
251
251
For more information on the Azure PowerShell, see [Azure PowerShell documentation](/powershell/azure/).
252
252
253
-
Additional networking PowerShell script samples can be found in the [Azure Networking Overview documentation](../powershell-samples.md?toc=%2fazure%2fnetworking%2ftoc.json).
253
+
More networking PowerShell script samples can be found in the [Azure Networking Overview documentation](../powershell-samples.md?toc=%2fazure%2fnetworking%2ftoc.json).
0 commit comments