Skip to content

Commit fd02db0

Browse files
Update virtual-network-ipv4-ipv6-dual-stack-standard-load-balancer-powershell.md
Updating to ULA IPv6 address space in examples
1 parent e578892 commit fd02db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-network/virtual-network-ipv4-ipv6-dual-stack-standard-load-balancer-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ Create a virtual network with [New-AzVirtualNetwork](/powershell/module/az.netwo
224224
# Create dual stack subnet
225225
$subnet = New-AzVirtualNetworkSubnetConfig `
226226
-Name "dsSubnet" `
227-
-AddressPrefix "10.0.0.0/24","2001:db8:deca:deed::/64"
227+
-AddressPrefix "10.0.0.0/24","fd00:db8:deca:deed::/64"
228228
229229
# Create the virtual network
230230
$vnet = New-AzVirtualNetwork `
231231
-ResourceGroupName $rg.ResourceGroupName `
232232
-Location $rg.Location `
233233
-Name "dsVnet" `
234-
-AddressPrefix "10.0.0.0/16","2001:db8:deca::/48" `
234+
-AddressPrefix "10.0.0.0/16","fd00:db8:deca::/48" `
235235
-Subnet $subnet
236236
```
237237

0 commit comments

Comments
 (0)