You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#CustomerIntent: As an Azure administrator, I want to learn about Network Watcher Agent VM extension so that I can use Network watcher features to diagnose and monitor my virtual machines (VMs).
13
14
---
14
15
15
16
# Manage Network Watcher Agent virtual machine extension for Windows
16
17
17
-
[Azure Network Watcher](../../network-watcher/network-watcher-monitoring-overview.md) is a network performance monitoring, diagnostic, and analytics service that allows monitoring for Azure networks. The Network Watcher Agent virtual machine extension is a requirement for some of the Network Watcher features on Azure virtual machines (VMs). For more information, see [Network Watcher Agent FAQ](../../network-watcher/frequently-asked-questions.yml#network-watcher-agent).
18
+
The Network Watcher Agent virtual machine extension is a requirement for some of Azure Network Watcher features that capture network traffic to diagnose and monitor Azure virtual machines (VMs). For more information, see [What is Azure Network Watcher?](../../network-watcher/network-watcher-overview.md)
18
19
19
-
In this article, you learn about the supported platforms and deployment options for the Network Watcher Agent VM extension for Windows. Installation of the agent doesn't disrupt, or require a reboot of the virtual machine. You can install the extension on virtual machines that you deploy. If the virtual machine is deployed by an Azure service, check the documentation for the service to determine whether or not it permits installing extensions in the virtual machine.
20
+
In this article, you learn how to install and uninstall Network Watcher Agent for Windows. Installation of the agent doesn't disrupt, or require a reboot of the virtual machine. If the virtual machine is deployed by an Azure service, check the documentation of the service to determine whether or not it permits installing extensions in the virtual machine.
20
21
21
22
## Prerequisites
22
23
23
24
# [**Portal**](#tab/portal)
24
25
25
26
- An Azure Windows virtual machine (VM). For more information, see [Supported Windows versions](#supported-operating-systems).
26
27
27
-
- Internet connectivity: some of the Network Watcher Agent functionality requires that the virtual machine is connected to the Internet. For example, without the ability to establish outgoing connections, the Network Watcher Agent can't upload packet captures to your storage account. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
28
+
- Outbound TCP connectivity to `169.254.169.254` over `port 80` and `168.63.129.16` over `port 8037`. The agent uses these IP addresses to communicate with the Azure platform.
29
+
30
+
- Internet connectivity: Network Watcher Agent requires internet connectivity for some features to properly work. For example, it requires connectivity to your storage account to upload packet captures. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
28
31
29
32
# [**PowerShell**](#tab/powershell)
30
33
31
34
- An Azure Windows virtual machine (VM). For more information, see [Supported Windows versions](#supported-operating-systems).
32
35
33
-
- Internet connectivity: some of the Network Watcher Agent functionality requires that the virtual machine is connected to the Internet. For example, without the ability to establish outgoing connections, the Network Watcher Agent can't upload packet captures to your storage account. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
36
+
- Outbound TCP connectivity to `169.254.169.254` over `port 80` and `168.63.129.16` over `port 8037`. The agent uses these IP addresses to communicate with the Azure platform.
37
+
38
+
- Internet connectivity: Network Watcher Agent requires internet connectivity for some features to properly work. For example, it requires connectivity to your storage account to upload packet captures. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
34
39
35
40
- Azure Cloud Shell or Azure PowerShell.
36
41
@@ -42,7 +47,9 @@ In this article, you learn about the supported platforms and deployment options
42
47
43
48
- An Azure Windows virtual machine (VM). For more information, see [Supported Windows versions](#supported-operating-systems).
44
49
45
-
- Internet connectivity: some of the Network Watcher Agent functionality requires that the virtual machine is connected to the Internet. For example, without the ability to establish outgoing connections, the Network Watcher Agent can't upload packet captures to your storage account. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
50
+
- Outbound TCP connectivity to `169.254.169.254` over `port 80` and `168.63.129.16` over `port 8037`. The agent uses these IP addresses to communicate with the Azure platform.
51
+
52
+
- Internet connectivity: Network Watcher Agent requires internet connectivity for some features to properly work. For example, it requires connectivity to your storage account to upload packet captures. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
46
53
47
54
- Azure Cloud Shell or Azure CLI.
48
55
@@ -54,7 +61,9 @@ In this article, you learn about the supported platforms and deployment options
54
61
55
62
- An Azure Windows virtual machine (VM). For more information, see [Supported Windows versions](#supported-operating-systems).
56
63
57
-
- Internet connectivity: some of the Network Watcher Agent functionality requires that the virtual machine is connected to the Internet. For example, without the ability to establish outgoing connections, the Network Watcher Agent can't upload packet captures to your storage account. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
64
+
- Outbound TCP connectivity to `169.254.169.254` over `port 80` and `168.63.129.16` over `port 8037`. The agent uses these IP addresses to communicate with the Azure platform.
65
+
66
+
- Internet connectivity: Network Watcher Agent requires internet connectivity for some features to properly work. For example, it requires connectivity to your storage account to upload packet captures. For more information, see [Packet capture overview](../../network-watcher/packet-capture-overview.md).
58
67
59
68
- Azure PowerShell or Azure CLI installed locally to deploy the template.
60
69
@@ -107,16 +116,15 @@ Use [Get-AzVMExtension](/powershell/module/az.compute/get-azvmextension) cmdlet
107
116
108
117
```azurepowershell-interactive
109
118
# List the installed extensions on the virtual machine.
# Deploy the JSON template file using the Azure CLI.
243
-
az deployment group create --resource-group 'myResourceGroup' --template-file
250
+
az deployment group create --resource-group 'myResourceGroup' --template-file 'agent.json'
244
251
```
245
252
246
253
---
@@ -258,7 +265,7 @@ From the virtual machine page in the Azure portal, you can uninstall the Network
258
265
:::image type="content" source="./media/network-watcher/uninstall-extension-windows.png" alt-text="Screenshot that shows how to uninstall Network Watcher Agent for Windows in the Azure portal." lightbox="./media/network-watcher/uninstall-extension-windows.png":::
259
266
260
267
> [!NOTE]
261
-
> In the list of extensions, you might see Network Watcher Agent VM extension named differently than **AzureNetworkWatcherExtension**.
268
+
> You might see Network Watcher Agent VM extension named differently than **AzureNetworkWatcherExtension**.
262
269
263
270
# [**PowerShell**](#tab/powershell)
264
271
@@ -284,6 +291,9 @@ N/A
284
291
285
292
---
286
293
294
+
## Frequently asked questions (FAQ)
295
+
296
+
To get answers to most frequently asked questions about Network Watcher Agent, see [Network Watcher Agent FAQ](../../network-watcher/frequently-asked-questions.yml#network-watcher-agent).
0 commit comments