Skip to content

Commit 666ac15

Browse files
committed
corrected issues
1 parent 85d4214 commit 666ac15

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/private-link/private-link-disable-snat.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Disable SNAT requirement for Private Endpoint traffic through NVA
2+
title: Disable SNAT requirement for private endpoint traffic through NVA
33
description: Learn how to enable SNAT bypass for private endpoint traffic passing through a network virtual appliance (NVA) in Azure.
44
author: abell
55
ms.author: abell
@@ -11,7 +11,7 @@ ms.date: 03/11/2025
1111

1212
---
1313

14-
# How to Guide: Disable SNAT requirement for Private Endpoint traffic through NVA
14+
# How to Guide: Disable SNAT requirement for private endpoint traffic through NVA
1515

1616
Source network address translation (SNAT) is no longer required for private endpoint destined traffic passing through a network virtual appliance (NVA). You can now configure a tag on your NVA virtual machines to notify the Microsoft platform that you wish to opt into this feature. This means SNATing is no longer be necessary for private endpoint destined traffic traversing through your NVA.
1717

@@ -29,7 +29,7 @@ Enabling this feature provides a more streamlined experience for guaranteeing sy
2929

3030
### Disable SNAT requirement for Private Endpoint traffic through NVA
3131

32-
The type of NVA you're using determines how to disable SNAT for private endpoint traffic passing through the NVA. For the virtual machine, you add a tag on the Network interface (NIC). On the virtual machine scale set (VMSS) you enable the tag on the virtual machine scale set instance.
32+
The type of NVA you're using determines how to disable SNAT for private endpoint traffic passing through the NVA. For the virtual machine, you add a tag on the Network interface (NIC). On the virtual machine scale set you enable the tag on the virtual machine scale set instance.
3333

3434
#### Add Tag to your virtual machine NIC
3535

@@ -58,7 +58,7 @@ Here we add the tag to the virtual machine's NIC.
5858
5959
# [PowerShell](#tab/vm-nic-powershell)
6060

61-
1. Use the following PowerShell command to add the tag to your virtual machine's NIC:
61+
* Use the following PowerShell command to add the tag to your virtual machine's NIC:
6262

6363
```azurepowershell-interactive
6464
$nic = Get-AzNetworkInterface -Name "myNIC" -ResourceGroupName "MyResourceGroup"
@@ -70,7 +70,7 @@ Here we add the tag to the virtual machine's NIC.
7070

7171
# [Azure CLI](#tab/vm-nic-cli)
7272

73-
1. Use the following CLI command to add the tag to your virtual machine's NIC:
73+
* Use the following CLI command to add the tag to your virtual machine's NIC:
7474

7575
```azurecli-interactive
7676
az network nic update --name "myNIC" --resource-group "MyResourceGroup" --set tags.disableSnatOnPL=\'true\'
@@ -102,7 +102,7 @@ Here we add the tag to the virtual machine scale set instance.
102102
103103
# [PowerShell](#tab/vmss-powershell)
104104

105-
1. Use the following PowerShell command to add the tag to your virtual machine scale set:
105+
* Use the following PowerShell command to add the tag to your virtual machine scale set:
106106

107107
```azurepowershell-interactive
108108
$vmss = Get-AzVmss -ResourceGroupName "MyResourceGroup" -VMScaleSetName "myVmss"
@@ -112,7 +112,7 @@ Here we add the tag to the virtual machine scale set instance.
112112

113113
# [Azure CLI](#tab/vmss-cli)
114114

115-
1. Use the following Azure CLI command to add the tag to your virtual machine scale set:
115+
* Use the following Azure CLI command to add the tag to your virtual machine scale set:
116116

117117
```azurecli-interactive
118118
az vmss update --name "myVmss" --resource-group "MyResourceGroup" --set tags.disableSnatOnPL=\'true\'

0 commit comments

Comments
 (0)