Skip to content

Commit 703be2f

Browse files
committed
fixes
1 parent 62dc1d9 commit 703be2f

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/virtual-network/virtual-network-troubleshoot-nva.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ Each NVA has basic configuration requirements to function correctly on Azure. Th
7575

7676
1. If IP forwarding isn't enabled, execute the following commands to enable it:
7777

78-
```powershell
79-
$nic2 = Get-AzNetworkInterface -ResourceGroupName <ResourceGroupName> -Name <NicName>
80-
$nic2.EnableIPForwarding = 1
81-
Set-AzNetworkInterface -NetworkInterface $nic2
82-
$nic2 | Format-List
83-
```
78+
```powershell
79+
$nic2 = Get-AzNetworkInterface -ResourceGroupName <ResourceGroupName> -Name <NicName>
80+
$nic2.EnableIPForwarding = 1
81+
Set-AzNetworkInterface -NetworkInterface $nic2
82+
$nic2 | Format-List
83+
```
8484
8585
The output should look similar to the following:
8686
@@ -113,19 +113,19 @@ Use of a standard version of public IPs. There must be an NSG created and an exp
113113

114114
**Check whether NVA and VMs are listening for expected traffic**
115115

116-
1. Connect to the NVA by using RDP or SSH, and then run following command:
116+
Connect to the NVA by using RDP or SSH, and then run following command:
117117

118-
For Windows:
118+
For Windows:
119119

120-
```console
121-
netstat -an
122-
```
120+
```console
121+
netstat -an
122+
```
123123

124-
For Linux:
124+
For Linux:
125125

126-
```console
127-
netstat -an | grep -i listen
128-
```
126+
```console
127+
netstat -an | grep -i listen
128+
```
129129

130130
If the TCP port used by the NVA software isn't listed in the results, configure the application on the NVA and VM to listen on those ports. For further assistance, [contact the NVA vendor](https://mskb.pkisolutions.com/kb/2984655).
131131

0 commit comments

Comments
 (0)