Skip to content

Commit 0beedf8

Browse files
Explicitly state the firewalld commands required to setup the firewall on the MCC EDR agent VM.
This was requested in user feedback.
1 parent 9b6d76c commit 0beedf8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

articles/operator-insights/set-up-ingestion-agent.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,19 @@ Repeat these steps for each VM onto which you want to install the agent.
143143
- Port 36001/TCP inbound from the MCCs
144144
- Port 443/TCP outbound to Azure
145145
146+
You can configure this with:
147+
```
148+
sudo firewall-cmd --permanent --new-service=mcc-connection
149+
sudo firewall-cmd --permanent --service=mcc-connection --add-port=36001/tcp
150+
sudo firewall-cmd --add-service=mcc-connection --permanent
151+
152+
sudo firewall-cmd --permanent --new-service=azure-connection
153+
sudo firewall-cmd --permanent --service=azure-connection --add-port=443/tcp
154+
sudo firewall-cmd --add-service=azure-connection --permanent
155+
156+
sudo firewall-cmd --reload
157+
```
158+
146159
---
147160
148161
## Ensure that VM can resolve Microsoft hostnames

0 commit comments

Comments
 (0)