Skip to content

Commit 56d7888

Browse files
Update ipv6-add-to-existing-vnet-powershell.md
Updating to ULA IPv6 address space in examples
1 parent e8b4ae7 commit 56d7888

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-network/ipv6-add-to-existing-vnet-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Add IPv6 address ranges to the virtual network and subnet hosting the VMs as fol
111111
$vnet = Get-AzVirtualNetwork -ResourceGroupName $rg.ResourceGroupName -Name "myVnet"
112112
113113
#Add IPv6 prefix to the VNET
114-
$vnet.addressspace.addressprefixes.add("2001:db8:deca::/48")
114+
$vnet.addressspace.addressprefixes.add("fd00:db8:deca::/48")
115115
116116
#Update the running VNET
117117
$vnet | Set-AzVirtualNetwork
@@ -120,7 +120,7 @@ $vnet | Set-AzVirtualNetwork
120120
$subnet= $vnet.subnets[0]
121121
122122
#Add IPv6 prefix to the Subnet (subnet of the VNET prefix, of course)
123-
$subnet.addressprefix.add("2001:db8:deca::/64")
123+
$subnet.addressprefix.add("fd00:db8:deca::/64")
124124
125125
#Update the running VNET with the new subnet configuration
126126
$vnet | Set-AzVirtualNetwork

0 commit comments

Comments
 (0)