Skip to content

Commit 10f437e

Browse files
authored
Merge pull request #48875 from vhorne/fw-faq
include stop/start instructions
2 parents 4b5c922 + b59957b commit 10f437e

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

includes/firewall-faq-include.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author: vhorne
66
ms.service:
77
ms.topic: include
8-
ms.date: 7/30/2018
8+
ms.date: 8/13/2018
99
ms.author: victorh
1010
ms.custom: include file
1111
---
@@ -75,6 +75,29 @@ The Azure Firewall service complements Network Security Group functionality and
7575

7676
For secure access to PaaS services, we recommend Service Endpoints. Azure Firewall customers can choose to enable service endpoints in the Azure Firewall subnet and disable it on the connected spoke VNETs for benefitting from both features – service endpoint security and central logging for all traffic.
7777

78+
### How can I stop and start Azure Firewall?
79+
80+
You can use Azure PowerShell *deallocate* and *allocate* methods.
81+
82+
For example:
83+
84+
```Azurepowershell
85+
# Stop an exisitng firewall
86+
87+
$azfw = Get-AzureRmFirewall -Name "FW Name” -ResourceGroupName "RG Name"
88+
$azfw.Deallocate()
89+
Set-AzureRmFirewall -AzureFirewall $azfw
90+
```
91+
92+
```azurepowershell
93+
#Start a firewall
94+
95+
$vnet = Get-AzureRmVirtualNetwork -ResourceGroupName "RG Name" -Name "VNet Name"
96+
$publicip = Get-AzureRmPublicIpAddress -Name "Public IP Name" -ResourceGroupName " RG Name"
97+
$azfw.Allocate($vnet,$publicip)
98+
Set-AzureRmFirewall -AzureFirewall $azfw
99+
```
100+
78101
### What are the known service limits?
79102

80103
* Azure firewall has a soft limit of 1000 TB/firewall/month.

0 commit comments

Comments
 (0)