|
| 1 | +--- |
| 2 | +title: Customer provided public IP address support in secured hubs (preview) |
| 3 | +description: Learn about customer provided public IP address support in secured hubs. |
| 4 | +services: firewall |
| 5 | +author: vhorne |
| 6 | +ms.service: azure-firewall |
| 7 | +ms.topic: concept-article |
| 8 | +ms.date: 01/15/2025 |
| 9 | +ms.author: victorh |
| 10 | +--- |
| 11 | + |
| 12 | +# Customer provided public IP address support in secured hubs (preview) |
| 13 | + |
| 14 | +> [!IMPORTANT] |
| 15 | +> Customer provided public IP address support in secured hubs is currently in PREVIEW. |
| 16 | +> See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability. |
| 17 | +
|
| 18 | +Virtual WAN hub deployments can now associate customer tenant public IP addresses with secured hub Azure Firewalls. |
| 19 | + |
| 20 | +The capability is available only to new deployments of secured hub Firewalls. For existing secured virtual WAN hubs, delete the hub firewall and redeploy a new Firewall during scheduled maintenance hours. You can use the Azure portal or Azure PowerShell to configure it. |
| 21 | + |
| 22 | +The capability has the following benefits: |
| 23 | + |
| 24 | +- You own and control the lifecycle of the Azure Firewall public IP addresses. |
| 25 | + |
| 26 | +- Secured hub firewalls can enable enhanced DDoS mitigation features to defend against DDoS attacks. |
| 27 | + |
| 28 | +- You can allocate Azure Firewall public IP addresses from an IP address prefix pool. |
| 29 | + |
| 30 | +## Configuration |
| 31 | + |
| 32 | +You can configure this feature using either the Azure portal or Azure PowerShell. |
| 33 | + |
| 34 | +### Azure portal |
| 35 | + |
| 36 | +You can associate a preexisting public IP address with a secured hub firewall. You should allocate public IP addresses from an IP prefix pool to simplify downstream security access control lists (ACLs). |
| 37 | + |
| 38 | +:::image type="content" source="media/secured-hub-customer-public-ip/new-secured-hub-customer-public-ip.png" alt-text="Screenshot showing new secured virtual hub."::: |
| 39 | + |
| 40 | +### Azure PowerShell |
| 41 | + |
| 42 | +```azurepowershell |
| 43 | +$publicip = Get-AzPublicIpAddress -ResourceGroupName $rgName -Name $PIPName |
| 44 | +$virtualhub = get-azvirtualhub -ResourceGroupName $rgName -name $vwanhub |
| 45 | +New-AzFirewall -Name $azfwname -ResourceGroupName $rgName -Location westcentralus -SkuName AZFW_Hub -SkuTier $Tier -PublicIpAddress $publicip -VirtualHubId $virtualhub.Id |
| 46 | +``` |
| 47 | + |
| 48 | +## Next steps |
| 49 | + |
| 50 | +- [Tutorial: Secure your virtual hub using Azure Firewall Manager](../firewall-manager/secure-cloud-network.md) |
0 commit comments