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/ip-services/ipv6-virtual-machine-scale-set.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: This article shows how to deploy virtual machine scale sets with IP
5
5
services: virtual-network
6
6
author: mbender-ms
7
7
ms.author: mbender
8
-
ms.date: 08/24/2023
8
+
ms.date: 01/08/2025
9
9
ms.service: azure-virtual-network
10
10
ms.topic: how-to
11
11
---
@@ -17,7 +17,7 @@ This article shows you how to deploy a dual stack (IPv4 + IPv6) Virtual Machine
17
17
2. Create a dual stack load balancer.
18
18
3. Create network security group (NSG) rules.
19
19
20
-
The only step that is different from individual VMs is creating the network interface (NIC) configuration that uses the virtual machine scale set resource: networkProfile/networkInterfaceConfigurations. The JSON structure is similar to that of the Microsoft.Network/networkInterfaces object used for individual VMs with the addition of setting the NIC and the IPv4 IpConfiguration as the primary interface using the **"primary": true** attribute as seen in the following example:
20
+
The only step that is different from individual VMs is creating the network interface (NIC) configuration that uses the virtual machine scale set resource: `networkProfile/networkInterfaceConfigurations`. The JSON structure is similar to that of the `Microsoft.Network/networkInterfaces` object used for individual VMs with the addition of setting the NIC and the IPv4 IpConfiguration as the primary interface using the `"primary": true` attribute as seen in the following example:
description: Learn about public IP address prefixes and how to create, change, or delete them.
5
5
author: mbender-ms
6
6
ms.author: mbender
7
-
ms.date: 08/24/2023
7
+
ms.date: 01/08/2025
8
8
ms.service: azure-virtual-network
9
9
ms.subservice: ip-services
10
10
ms.topic: concept-article
@@ -18,21 +18,19 @@ A public IP address prefix is a contiguous range of standard SKU public IP addre
18
18
19
19
The following section details the parameters when creating a public IP prefix.
20
20
21
-
|Setting | Required? | Details |
22
-
| --- | --- | --- |
23
-
| Subscription|Yes|Must exist in the same [subscription](../../azure-glossary-cloud-terminology.md?toc=%2fazure%2fvirtual-network%2ftoc.json#subscription) as the resource you want to associate the public IP address prefix to. |
24
-
| Resource group|Yes|Can exist in the same, or different, [resource group](../../azure-glossary-cloud-terminology.md?toc=%2fazure%2fvirtual-network%2ftoc.json#resource-group) as the resource you want to associate the public IP address prefix to. |
25
-
| Name | Yes | The name must be unique within the resource group you select.|
26
-
| Region | Yes | Must exist in the same [region](https://azure.microsoft.com/regions)as the public IP addresses assigned from the range. |
27
-
| IP version | Yes | IP version of the prefix (v4 or v6). |
28
-
| Prefix ownership | Yes | Specify if the IP ranges will be owned by Microsoft or you, see [Custom IP Prefix](custom-ip-address-prefix.md) for more information on the latter case. |
29
-
| Prefix size | Yes | The size of the prefix you need. A range with 16 IP addresses (/28 for v4 or /124 for v6) is the default limit for Microsoft owned ranges. |
21
+
|**Setting**|**Required?**|**Details**|
22
+
| --- | --- | --- |
23
+
| Subscription|Yes|Must exist in the same [subscription](../../azure-glossary-cloud-terminology.md?toc=%2fazure%2fvirtual-network%2ftoc.json#subscription) as the resource you want to associate the public IP address prefix to. |
24
+
| Resource group|Yes|Can exist in the same, or different, [resource group](../../azure-glossary-cloud-terminology.md?toc=%2fazure%2fvirtual-network%2ftoc.json#resource-group) as the resource you want to associate the public IP address prefix to. |
25
+
| Name | Yes | The name must be unique within the resource group you select.|
26
+
| Region | Yes | Must exist in the same [region](https://azure.microsoft.com/regions)as the public IP addresses assigned from the range. |
27
+
| IP version | Yes | IP version of the prefix (v4 or v6). |
28
+
| Prefix ownership | Yes | Specify if the IP ranges will be owned by Microsoft or you, see [Custom IP Prefix](custom-ip-address-prefix.md) for more information on the latter case. |
29
+
| Prefix size | Yes | The size of the prefix you need. A range with 16 IP addresses (/28 for v4 or /124 for v6) is the default limit for Microsoft owned ranges. |
30
30
31
31
Alternatively, you may use the following CLI and PowerShell commands to create a public IP address prefix.
@@ -47,15 +45,15 @@ Alternatively, you may use the following CLI and PowerShell commands to create a
47
45
48
46
The following section details the parameters required when creating a static public IP address from a prefix.
49
47
50
-
|Setting | Required? | Details |
51
-
| --- | --- | --- |
52
-
| Name | Yes | The name of the public IP address must be unique within the resource group you select. |
53
-
| Idle timeout (minutes)| No| How many minutes to keep a TCP or HTTP connection open without relying on clients to send keep-alive messages. |
54
-
| DNS name label | No | Must be unique within the Azure region you create the name in (across all subscriptions and all customers). </br> Azure automatically registers the name and IP address in its DNS so you can connect to a resource with the name. </br> Azure appends a default subnet *location.cloudapp.azure.com* to the name you provide to create the fully qualified DNS name. </br> For more information, see [Use Azure DNS with an Azure public IP address](../../dns/dns-custom-domain.md?toc=%2fazure%2fvirtual-network%2ftoc.json#public-ip-address). |
48
+
|**Setting**|**Required?**|**Details**|
49
+
| --- | --- | --- |
50
+
| Name | Yes | The name of the public IP address must be unique within the resource group you select. |
51
+
| Idle timeout (minutes)| No| How many minutes to keep a TCP or HTTP connection open without relying on clients to send keep-alive messages. |
52
+
| DNS name label | No | Must be unique within the Azure region you create the name in (across all subscriptions and all customers). </br> Azure automatically registers the name and IP address in its DNS so you can connect to a resource with the name. </br> Azure appends a default subnet *location.cloudapp.azure.com* to the name you provide to create the fully qualified DNS name. </br> For more information, see [Use Azure DNS with an Azure public IP address](../../dns/dns-custom-domain.md?toc=%2fazure%2fvirtual-network%2ftoc.json#public-ip-address). |
55
53
56
54
Alternatively, you may use the following CLI and PowerShell commands with the **`--public-ip-prefix`****(CLI)** and **`-PublicIpPrefix`****(PowerShell)** parameters, to create a public IP address resource from a prefix.
@@ -70,9 +68,7 @@ Alternatively, you may use the following CLI and PowerShell commands with the **
70
68
71
69
To view or delete a prefix, the following commands can be used in Azure CLI and Azure PowerShell.
72
70
73
-
**Commands**
74
-
75
-
| Tool | Command |
71
+
|**Tool**|**Command**|
76
72
| --- | --- |
77
73
| CLI |[az network public-ip prefix list](/cli/azure/network/public-ip/prefix#az-network-public-ip-prefix-list) to list public IP addresses. <br> [az network public-ip prefix show](/cli/azure/network/public-ip/prefix#az-network-public-ip-prefix-show) to show settings. <br> [az network public-ip prefix update](/cli/azure/network/public-ip/prefix#az-network-public-ip-prefix-update) to update. <br> [az network public-ip prefix delete](/cli/azure/network/public-ip/prefix#az-network-public-ip-prefix-delete) to delete. |
78
74
| PowerShell |[Get-AzPublicIpPrefix](/powershell/module/az.network/get-azpublicipprefix) to retrieve a public IP address object and view its settings. <br> [Set-AzPublicIpPrefix](/powershell/module/az.network/set-azpublicipprefix) to update settings. <br> [Remove-AzPublicIpPrefix](/powershell/module/az.network/remove-azpublicipprefix) to delete. |
@@ -81,7 +77,7 @@ To view or delete a prefix, the following commands can be used in Azure CLI and
81
77
82
78
For permissions to manage public IP address prefixes, your account must be assigned to the [network contributor](../../role-based-access-control/built-in-roles.md?toc=%2fazure%2fvirtual-network%2ftoc.json#network-contributor) role or to a [custom](../../role-based-access-control/custom-roles.md?toc=%2fazure%2fvirtual-network%2ftoc.json) role.
83
79
84
-
| Action | Name |
80
+
|**Action**|**Name**|
85
81
| --------- | ------------- |
86
82
| Microsoft.Network/publicIPPrefixes/read | Read a public IP address prefix |
87
83
| Microsoft.Network/publicIPPrefixes/write | Create or update a public IP address prefix |
@@ -90,4 +86,5 @@ For permissions to manage public IP address prefixes, your account must be assig
90
86
91
87
## Next steps
92
88
93
-
- Learn about scenarios and benefits of using a [public IP prefix](public-ip-address-prefix.md)
89
+
> [!div class="nextstepaction"]
90
+
> [Learn about the scenarios and benefits of using a public IP prefix](public-ip-address-prefix.md)
0 commit comments