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
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
45
+
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
46
46
>
47
-
>The following command works for Az.Network module version 4.5.0 or later. For more information about the PowerShell modules currently being used, please refer to the [PowerShellGet documentation](/powershell/module/powershellget/).
47
+
>The following command works for `Az.Network` module version 4.5.0 or later. For more information about the PowerShell modules currently being used, see the [PowerShellGet documentation](/powershell/module/powershellget/).
48
48
49
49
In this section, you create a public IP with zones. Public IP addresses can be zone-redundant or zonal.
50
50
@@ -65,17 +65,17 @@ $ip = @{
65
65
New-AzPublicIpAddress @ip
66
66
```
67
67
> [!IMPORTANT]
68
-
> For Az.Network modules older than 4.5.0, run the command above without specifying a zone parameter to create a zone-redundant IP address.
68
+
> For `Az.Network` modules older than 4.5.0, run the command above without specifying a zone parameter to create a zone-redundant IP address.
69
69
>
70
70
71
71
# [**Basic SKU**](#tab/create-public-ip-basic)
72
72
73
73
>[!NOTE]
74
-
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
74
+
>Standard SKU public IP is recommended for production workloads. For more information about SKUs, see **[Public IP addresses](public-ip-addresses.md)**.
75
75
76
76
In this section, you create a basic IP. Basic public IPs don't support availability zones.
77
77
78
-
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a basic static public IPv4 address named **myBasicPublicIP** in **QuickStartCreateIP-rg**.
78
+
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a basic static public IPv4 address named **myBasicPublicIP** in **QuickStartCreateIP-rg**.
79
79
80
80
To create an IPv6 address, modify the **`--IpAddressVersion`** parameter to **IPv6**.
81
81
@@ -93,7 +93,7 @@ New-AzPublicIpAddress @ip
93
93
If it's acceptable for the IP address to change over time, **Dynamic** IP assignment can be selected by changing the **`-AllocationMethod`** to **Dynamic**.
In this section, you create a non-zonal IP address.
127
+
In this section, you create a non-zonal IP address.
128
128
129
129
>[!NOTE]
130
-
>The following command works for Az.Network module version 4.5.0 or later. For more information about the PowerShell modules currently being used, please refer to the [PowerShellGet documentation](/powershell/module/powershellget/).
130
+
>The following command works for `Az.Network` module version 4.5.0 or later. For more information about the PowerShell modules currently being used, see the [PowerShellGet documentation](/powershell/module/powershellget/).
131
131
132
132
Use [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress) to create a standard public IPv4 address as a non-zonal resource named **myStandardPublicIP-nozone** in **QuickStartCreateIP-rg**.
133
133
@@ -144,7 +144,7 @@ $ip = @{
144
144
}
145
145
New-AzPublicIpAddress @ip
146
146
```
147
-
The removal of the **`-Zone`** parameter in the command is valid in all regions.
147
+
The removal of the **`-Zone`** parameter in the command is valid in all regions.
148
148
149
149
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).
150
150
@@ -156,9 +156,9 @@ Standard SKU static public IPv4 addresses support Routing Preference or the Glob
By default, the routing preference for public IP addresses is set to **Microsoft network**, which delivers traffic over Microsoft's global wide area network to the user.
159
+
By default, the routing preference for public IP addresses is set to **Microsoft network**, which delivers traffic over Microsoft's global wide area network to the user.
160
160
161
-
The selection of **Internet** minimizes travel on Microsoft's network, instead using the transit ISP network to deliver traffic at a cost-optimized rate.
161
+
The selection of **Internet** minimizes travel on Microsoft's network, instead using the transit ISP network to deliver traffic at a cost-optimized rate.
162
162
163
163
For more information on routing preference, see [What is routing preference (preview)?](routing-preference-overview.md).
164
164
@@ -188,7 +188,7 @@ New-AzPublicIpAddress @ip
188
188
189
189
# [**Tier**](#tab/tier)
190
190
191
-
Public IP addresses are associated with a single region. The **Global** tier spans an IP address across multiple regions. **Global** tier is required for the frontends of cross-region load balancers.
191
+
Public IP addresses are associated with a single region. The **Global** tier spans an IP address across multiple regions. **Global** tier is required for the frontends of cross-region load balancers.
192
192
193
193
For more information, see [Cross-region load balancer](../../load-balancer/cross-region-overview.md).
0 commit comments