Skip to content

Commit fd5b257

Browse files
authored
Merge pull request #272330 from wtnlee/updateNVADelete
Update nva delete
2 parents a636eb7 + cf3331f commit fd5b257

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

includes/virtual-wan-nva-hub-faq.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ms.date: 04/19/2022
66
ms.author: cherylmc
77
---
8-
### I'm a network appliance partner and want to get our NVA in the hub. Can I join this partner program?
8+
### I'm a network virtual appliance (NVA) partner and want to get our NVA in the hub. Can I join this partner program?
99

1010
Unfortunately, we don't have capacity to on-board any new partner offers at this time. Check back with us at a later date!
1111

@@ -15,19 +15,19 @@ Only partners listed in the [Partners](../articles/virtual-wan/about-nva-hub.md#
1515

1616
### What is the cost of the NVA?
1717

18-
You must purchase a license for the NVA from the NVA vendor. Bring-your-own license (BYOL) is the only licensing model supported today. In addition, you'll also incur charges from Microsoft for the NVA Infrastructure Units you consume, and any other resources you use. For more information, see [Pricing concepts](../articles/virtual-wan/pricing-concepts.md).
18+
You must purchase a license for the NVA from the NVA vendor. Bring-your-own license (BYOL) is the only licensing model supported today. In addition, Microsoft charges for the NVA Infrastructure Units you consume, and any other resources you use. For more information, see [Pricing concepts](../articles/virtual-wan/pricing-concepts.md).
1919

2020
### Can I deploy an NVA to a Basic hub?
2121

22-
No. You must use a Standard hub if you want to deploy an NVA.
22+
No, you must use a Standard hub if you want to deploy an NVA.
2323

2424
### Can I deploy an NVA into a Secure hub?
2525

2626
Yes. Partner NVAs can be deployed into a hub with Azure Firewall.
2727

28-
### Can I connect any CPE device in my branch office to my NVA in the hub?
28+
### Can I connect any device in my branch office to my NVA in the hub?
2929

30-
No. Barracuda CloudGen WAN is only compatible with Barracuda CPE devices. To learn more about CloudGen WAN requirements, see [Barracuda's CloudGen WAN page](https://www.barracuda.com/products/cloudgenwan). For Cisco, there are several SD-WAN CPE devices that are compatible. See [Cisco Cloud OnRamp for Multi-Cloud](https://www.cisco.com/c/en/us/td/docs/routers/sdwan/configuration/cloudonramp/ios-xe-17/cloud-onramp-book-xe/cloud-onramp-multi-cloud.html#Cisco_Concept.dita_c61e0e7a-fff8-4080-afee-47b81e8df701) documentation for compatible CPEs. Reach out to your provider with any questions.
30+
No, Barracuda CloudGen WAN is only compatible with Barracuda edge devices. To learn more about CloudGen WAN requirements, see [Barracuda's CloudGen WAN page](https://www.barracuda.com/products/cloudgenwan). For Cisco, there are several SD-WAN devices that are compatible. See [Cisco Cloud OnRamp for Multi-Cloud](https://www.cisco.com/c/en/us/td/docs/routers/sdwan/configuration/cloudonramp/ios-xe-17/cloud-onramp-book-xe/cloud-onramp-multi-cloud.html#Cisco_Concept.dita_c61e0e7a-fff8-4080-afee-47b81e8df701) documentation for compatible devices. Reach out to your provider with any questions.
3131

3232
### What routing scenarios are supported with NVA in the hub?
3333

@@ -39,20 +39,32 @@ For supported regions, see [NVA supported regions](../articles/virtual-wan/about
3939

4040
### How do I delete my NVA in the hub?
4141

42-
If the Network Virtual Appliance resource was deployed via a Managed Application, delete the Managed Application. This will automatically delete the Managed Resource Group and associated Network Virtual Appliance resource.
42+
If the Network Virtual Appliance resource was deployed via a Managed Application, delete the Managed Application. Deleting the Managed Application automatically deletes the Managed Resource Group and associated Network Virtual Appliance resource.
4343

44-
Note that you cannot delete a NVA that is the next hop resource for a Routing Policy. To delete the NVA, first delete the Routing Policy.
44+
You can't delete an NVA that is the next hop resource for a Routing Policy. To delete the NVA, first delete the Routing Policy.
4545

46-
If the Network Virtual Appliance resource was deployed via partner orchestration software, please reference partner documentation to delete the Network Virtual Appliance.
46+
If the Network Virtual Appliance resource was deployed via partner orchestration software, reference partner documentation to delete the Network Virtual Appliance.
4747

48-
Alternatively, you can run the following Powershell command to delete your Network Virtual Appliance.
48+
Alternatively, you can run the following PowerShell command to delete your Network Virtual Appliance.
4949

50+
1. Find the Azure resource group of the NVA you want to delete. The Azure resource group is usually **different** than the resource group the Virtual WAN hub is deployed in. Ensure the Virtual Hub property of the NVA resource corresponds to the NVA you want to delete. The following example assumes that all NVAs in your subscription have distinct names. If there are multiple NVAs with the same name, make sure you collect the information associated with the NVA you want to delete.
51+
52+
```azurepowershell-interactive
53+
$nva = Get-AzNetworkVirtualAppliance -Name <NVA name>
54+
$nva.VirtualHub
55+
```
56+
2. Delete the NVA.
5057
```azurepowershell-interactive
51-
Remove-AzNetworkVirtualAppliance -Name <NVA name> -ResourceGroupName <resource group name>
58+
Remove-AzNetworkVirtualAppliance -Name $nva.Name -ResourceGroupName $nva.ResourceGroupName
5259
```
5360

54-
The same command can also be run from CLI.
61+
The same series of steps can be executed from Azure CLI.
5562

63+
1. Find the Azure resource group of the NVA you want to delete. The Azure resource group is usually **different** than the resource group the Virtual WAN hub is deployed in. Ensure the Virtual Hub property of the NVA resource corresponds to the NVA you want to delete.
64+
```azurecli-interactive
65+
az network virtual-appliance list
66+
```
67+
2. Delete the NVA
5668
```azurecli-interactive
57-
az network virtual-appliance delete --subscription <subscription name> --resource-group <resource group name> --name <Network Virtual Appliance name>
69+
az network virtual-appliance delete --subscription <subscription name> --resource-group <resource group name> --name <NVA name>
5870
```

0 commit comments

Comments
 (0)