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
### Create a standard v2 zone-redundant IP address
71
+
72
+
>[!NOTE]
73
+
>Standard v2 SKU public IP is required for use of the Standard v2 NAT Gateway with zone-redundancy. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
74
+
>
75
+
>The following command works for API version **2020-08-01** or **later**. For more information about the API version currently being used, see [Resource Providers and Types](../../azure-resource-manager/management/resource-providers-and-types.md).
76
+
77
+
Use [az network public-ip create](/cli/azure/network/public-ip#az-network-public-ip-create) to create a standard v2 zone-redundant public IPv4 address named **myStandardPublicIP** in **QuickStartCreateIP-rg**.
78
+
79
+
To create an IPv6 address, modify the `--version` parameter to **IPv6**.
80
+
81
+
```azurecli-interactive
82
+
az network public-ip create \
83
+
--resource-group QuickStartCreateIP-rg \
84
+
--name myStandardPublicIP \
85
+
--version IPv4 \
86
+
--sku Standardv2 \
87
+
--zone 1 2 3
88
+
```
89
+
> [!IMPORTANT]
90
+
> For versions of the API older than 2020-08-01, execute the command without specifying a `--zone` parameter to create a zone-redundant IP address.
91
+
>
92
+
93
+
# [**Zonal Standard SKU **](#tab/create-public-ip-zonal)
Copy file name to clipboardExpand all lines: articles/virtual-network/ip-services/create-public-ip-prefix-cli.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,13 +112,11 @@ To create a IPv4 public IP prefix, enter **IPv4** in the `--version` parameter.
112
112
--name myPublicIpPrefix-nozone \
113
113
--resource-group QuickStartCreateIPPrefix-rg \
114
114
--sku standard \
115
-
--location westus2 \
115
+
--location westus \
116
116
--version IPv4
117
117
```
118
118
119
-
The removal of the `--zone` parameter in the command is valid in all regions.
120
-
121
-
The removal of the `--zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
119
+
The removal of the `--zone` parameter in the command is valid in all regions, but will lead to the creation of a zone-redundant IP prefix in regions with availabily zones. The removal of the `--zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
122
120
123
121
---
124
122
@@ -198,13 +196,11 @@ To create a IPv6 public IP prefix, enter **IPv6** in the `--version` parameter.
198
196
--name myPublicIpPrefix-nozone \
199
197
--resource-group QuickStartCreateIPPrefix-rg \
200
198
--sku standard \
201
-
--location westus2 \
199
+
--location westus \
202
200
--version IPv6
203
201
```
204
202
205
-
The removal of the `--zone` parameter in the command is valid in all regions.
206
-
207
-
The removal of the `--zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
203
+
The removal of the `--zone` parameter in the command is valid in all regions, but will lead to the creation of a zone-redundant IP prefix in regions with availabily zones. The removal of the `--zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
Copy file name to clipboardExpand all lines: articles/virtual-network/ip-services/create-public-ip-prefix-powershell.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,16 +119,14 @@ $ipv4 =@{
119
119
Name = 'myPublicIpPrefix-nozone'
120
120
ResourceGroupName = 'QuickStartCreateIPPrefix-rg'
121
121
Sku - 'standard'
122
-
Location = 'westus2'
122
+
Location = 'westus'
123
123
PrefixLength '28'
124
124
IpAddressVersion = 'IPv4'
125
125
}
126
126
New-AzPublicIpPrefix @ipv4
127
127
```
128
128
129
-
The removal of the `-Zone` parameter in the command is valid in all regions.
130
-
131
-
The removal of the `-Zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
129
+
The removal of the `-Zone` parameter in the command is valid in all regions, but will lead to the creation of a zone-redundant IP prefix in regions with availabily zones. The removal of the `-Zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
132
130
133
131
# [**Routing Preference Internet Standard IPv4 prefix**](#tab/ipv4-routing-pref)
134
132
@@ -217,16 +215,14 @@ $ipv6 =@{
217
215
Name = 'myPublicIpPrefix-nozone'
218
216
ResourceGroupName = 'QuickStartCreateIPPrefix-rg'
219
217
Sku - 'standard'
220
-
Location = 'westus2'
218
+
Location = 'westus'
221
219
PrefixLength = '124'
222
220
IpAddressVersion = 'IPv6'
223
221
}
224
222
New-AzPublicIpPrefix @ipv6
225
223
```
226
224
227
-
The removal of the `-Zone` parameter in the command is valid in all regions.
228
-
229
-
The removal of the `-Zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
225
+
The removal of the `-Zone` parameter in the command is valid in all regions, but will lead to the creation of a zone-redundant IP prefix in regions with availabily zones. The removal of the `-Zone` parameter is the default selection for standard public IP addresses in regions without [Availability Zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json).
Copy file name to clipboardExpand all lines: articles/virtual-network/ip-services/public-ip-addresses.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Full details are listed in the table below:
68
68
| Allocation method| Static | For IPv4: Dynamic or Static; For IPv6: Dynamic.|
69
69
| Idle Timeout | Have an adjustable inbound originated flow idle timeout of 4-30 minutes, with a default of 4 minutes, and fixed outbound originated flow idle timeout of 4 minutes.|Have an adjustable inbound originated flow idle timeout of 4-30 minutes, with a default of 4 minutes, and fixed outbound originated flow idle timeout of 4 minutes.|
70
70
| Security | Secure by default model and be closed to inbound traffic when used as a frontend. Allow traffic with [network security group (NSG)](../../virtual-network/network-security-groups-overview.md#network-security-groups) is required (for example, on the NIC of a virtual machine with a Standard SKU Public IP attached).| Open by default. Network security groups are recommended but optional for restricting inbound or outbound traffic.|
71
-
|[Availability zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json)| Supported. Standard IPs can be nonzonal, zonal, or zone-redundant. Standard v2 IPs can be zone-redundant. **Zone redundant IPs can only be created in [regions where 3 availability zones](../../reliability/availability-zones-region-support.md) are live.**| Not supported. |
71
+
|[Availability zones](../../reliability/availability-zones-overview.md?toc=%2fazure%2fvirtual-network%2ftoc.json)| Supported. Standard IPs can be non-zonal, zonal, or zone-redundant. Standard v2 IPs can be zone-redundant. **Zone redundant IPs can only be created in [regions where 3 availability zones](../../reliability/availability-zones-region-support.md) are live.**| Not supported. |
72
72
|[Routing preference Internet](routing-preference-overview.md)| Standard: Supported for use with [specific resource types](routing-preference-overview.md#supported-services) for more granular control on how traffic is routed between Azure and the Internet.<br>Standardv2: Not supported| Not supported.|
73
73
| Global tier | Standard: Supported for use with [cross-region load balancers](../../load-balancer/cross-region-overview.md).<br>Standardv2: Not yet supported| Not supported. |
74
74
@@ -105,11 +105,11 @@ Static public IP addresses are commonly used in the following scenarios:
105
105
106
106
Standard SKU Public IPs can be created as zonal or zone-redundant in [regions that support availability zones](../../reliability/availability-zones-region-support.md). Basic SKU Public IPs don't have any zones and are created as non-zonal. Once created, a public IP address can't change its availability zone.
107
107
108
-
In regions without availability zones, all public IP addresses are created as nonzonal. Public IP addresses created in a region that is later upgraded to have availability zones will be made zone-redundant once the region is in general availability status with multiple availability zones.
108
+
In regions without availability zones, all public IP addresses are created as non-zonal. Public IP addresses created in a region that is later upgraded to have availability zones will be made zone-redundant once the region is in general availability status with multiple availability zones.
109
109
110
110
| Value | Behavior |
111
111
| --- | --- |
112
-
| Zone-redundant | A zone-redundant IP is created in all zones for a region and can survive any single zone failure. |
112
+
| Zone-redundant | A zone-redundant IP is created in multiple zones for a given region and can survive any single zone failure. |
113
113
| Zonal | A zonal IP is tied to a specific availability zone, and shares fate with the health of the zone. |
114
114
| Non-zonal | Only valid in regions that do not support availability zones. |
Copy file name to clipboardExpand all lines: articles/virtual-network/ip-services/public-ip-basic-upgrade-guidance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ This section lists out some key differences between these two SKUs.
62
62
|---------|---------|---------|
63
63
|**Allocation method**| Static. | For IPv4: Dynamic or Static; For IPv6: Dynamic. |
64
64
|**Security**| Uses *Secure by default* model closed to inbound traffic when used as a frontend. To allow traffic, a [network security group](../network-security-groups-overview.md#network-security-groups) is required (for example, on the NIC of a virtual machine with a Standard SKU public IP attached). | Open by default. Network security groups are recommended but optional for restricting inbound or outbound traffic. |
65
-
|**[Availability zones](../../reliability/availability-zones-overview.md)**| Supported. Standard IPs can be nonzonal, zonal, or zone-redundant. Zone redundant IPs can only be created in [regions where three availability zones](../../reliability/availability-zones-region-support.md) are live. IPs created before availability zones aren't zone redundant. | Not supported. |
65
+
|**[Availability zones](../../reliability/availability-zones-overview.md)**| Supported. Standard IPs can be non-zonal, zonal, or zone-redundant. Zone redundant IPs can only be created in [regions where availability zones](../../reliability/availability-zones-region-support.md) are live. IPs created before availability zones aren't zone redundant. | Not supported. |
66
66
|**[Routing preference](routing-preference-overview.md)**| Supported to enable more granular control of how traffic is routed between Azure and the Internet. | Not supported. |
67
67
|**Global tier**| Supported via [cross-region load balancers](../../load-balancer/cross-region-overview.md).| Not supported. |
68
68
|**[Standard Load Balancer Support](../../load-balancer/skus.md)**| Both IPv4 and IPv6 are supported. | Not supported. |
0 commit comments