diff --git a/_posts/2024-06-01-Announcing-Inbound-IPv6-support.md b/_posts/2024-11-08-Announcing-Inbound-IPv6-support.md similarity index 92% rename from _posts/2024-06-01-Announcing-Inbound-IPv6-support.md rename to _posts/2024-11-08-Announcing-Inbound-IPv6-support.md index 23d649e97..1d22758d1 100644 --- a/_posts/2024-06-01-Announcing-Inbound-IPv6-support.md +++ b/_posts/2024-11-08-Announcing-Inbound-IPv6-support.md @@ -5,7 +5,9 @@ toc: true toc_sticky: true --- -Update - August 1, 2024: All but two regions are now supported and we have Azure portal support rolling out soon. We also added a CLI sample for configuration IPv6 support on a deployment slot. +Update 2 - November 8, 2024: IPv6 non-vnet outbound support is rolling out soon. We expect public preview to begin in late Q1 2025. Azure portal support to set the `IPMode` property is now available. A screenshot is included below. + +Update 1 - August 1, 2024: All but two regions are now supported and we have Azure portal support rolling out soon. We also added a CLI sample for configuration IPv6 support on a deployment slot. ## Introduction @@ -55,6 +57,12 @@ If you are updating a slot, you'll need the resource id of the slot. Here is an az resource update --ids '/subscriptions//resourceGroups//providers/Microsoft.Web/sites//slots/' --set properties.ipMode='IPv6' ``` +## Update using Azure portal + +To update an app to return IPv6 DNS records, you can use the Azure portal. Go to the app, and under the **Configuration** blade, you'll find the `Inbound IP mode (preview)` property. + +![Inbound IP mode portal setting]({{site.baseurl}}/media/2024/11/ipmode.png) + ## Create or update using Azure Resource Manager templates To deploy a new app or update an existing app using ARM, you can just set the IPMode to either IPv6 or IPv4AndIPv6. In this template, you are also creating an App Service plan. If you use the template below, replace the values prefixed with REPLACE. For the `reserved` property, true = Linux, false = Windows. diff --git a/media/2024/11/ipmode.png b/media/2024/11/ipmode.png new file mode 100644 index 000000000..328e9eac1 Binary files /dev/null and b/media/2024/11/ipmode.png differ