Skip to content

Commit c93619f

Browse files
Merge pull request #274280 from cwatson-cat/5-03-24-sf-dc-restore
Sentinel DCs - restore Sonicwall Firewall
2 parents de682a5 + ac7c90f commit c93619f

File tree

4 files changed

+111
-5
lines changed

4 files changed

+111
-5
lines changed

.openpublishing.redirection.sentinel.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,11 +1180,6 @@
11801180
"redirect_url": "/azure/sentinel/data-connectors-reference",
11811181
"redirect_document_id": false
11821182
},
1183-
{
1184-
"source_path_from_root": "/articles/sentinel/data-connectors/sonicwall-firewall.md",
1185-
"redirect_url": "/azure/sentinel/data-connectors-reference",
1186-
"redirect_document_id": false
1187-
},
11881183
{
11891184
"source_path_from_root": "/articles/sentinel/data-connectors/varmour-application-controller.md",
11901185
"redirect_url": "/azure/sentinel/data-connectors-reference",

articles/sentinel/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,8 @@
716716
href: data-connectors/snowflake.md
717717
- name: Sonrai Data Connector
718718
href: data-connectors/sonrai-data-connector.md
719+
- name: SonicWall Firewall
720+
href: data-connectors/sonicwall-firewall.md
719721
- name: Sophos Cloud Optix
720722
href: data-connectors/sophos-cloud-optix.md
721723
- name: Sophos Endpoint Protection (using Azure Functions)

articles/sentinel/data-connectors-reference.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,10 @@ Data connectors are available as part of the following offerings:
617617

618618
- [Snowflake (using Azure Functions)](data-connectors/snowflake.md)
619619

620+
## SonicWall Inc
621+
622+
- [SonicWall Firewall](data-connectors/sonicwall-firewall.md)
623+
620624
## Sonrai Security
621625

622626
- [Sonrai Data Connector](data-connectors/sonrai-data-connector.md)
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
---
2+
title: "SonicWall Firewall connector for Microsoft Sentinel"
3+
description: "Learn how to install the connector SonicWall Firewall to connect your data source to Microsoft Sentinel."
4+
author: cwatson-cat
5+
ms.topic: how-to
6+
ms.date: 11/29/2023
7+
ms.service: microsoft-sentinel
8+
ms.author: cwatson
9+
---
10+
11+
# SonicWall Firewall connector for Microsoft Sentinel
12+
13+
Common Event Format (CEF) is an industry standard format on top of Syslog messages, used by SonicWall to allow event interoperability among different platforms. By connecting your CEF logs to Microsoft Sentinel, you can take advantage of search & correlation, alerting, and threat intelligence enrichment for each log.
14+
15+
This is autogenerated content. For changes, contact the solution provider.
16+
17+
18+
## Connector attributes
19+
20+
| Connector attribute | Description |
21+
| --- | --- |
22+
| **Log Analytics table(s)** | CommonSecurityLog (SonicWall)<br/> |
23+
| **Data collection rules support** | [Workspace transform DCR](/azure/azure-monitor/logs/tutorial-workspace-transformations-portal) |
24+
| **Supported by** | [SonicWall](https://www.sonicwall.com/support/) |
25+
26+
## Query samples
27+
28+
**All logs**
29+
```kusto
30+
CommonSecurityLog
31+
| where DeviceVendor == "SonicWall"
32+
| sort by TimeGenerated desc
33+
```
34+
35+
**Summarize by destination IP and port**
36+
```kusto
37+
CommonSecurityLog
38+
| where DeviceVendor == "SonicWall"
39+
| summarize count() by DestinationIP, DestinationPort, TimeGenerated
40+
| sort by TimeGenerated desc
41+
```
42+
43+
**Show all dropped traffic from the SonicWall Firewall**
44+
```kusto
45+
CommonSecurityLog
46+
| where DeviceVendor == "SonicWall"
47+
| where AdditionalExtensions contains "fw_action='drop'"
48+
```
49+
50+
51+
52+
## Vendor installation instructions
53+
54+
1. Linux Syslog agent configuration
55+
56+
Install and configure the Linux agent to collect your Common Event Format (CEF) Syslog messages and forward them to Microsoft Sentinel.
57+
58+
Notice that the data from all regions will be stored in the selected workspace
59+
1.1 Select or create a Linux machine.
60+
61+
Select or create a Linux machine that Microsoft Sentinel will use as the proxy between your security solution and Microsoft Sentinel this machine can be on your on-prem environment, Azure or other clouds.
62+
63+
1.2 Install the CEF collector on the Linux machine
64+
65+
Install the Microsoft Monitoring Agent on your Linux machine and configure the machine to listen on the necessary port and forward messages to your Microsoft Sentinel workspace. The CEF collector collects CEF messages on port 514 TCP.
66+
67+
1. Make sure that you have Python on your machine using the following command: python -version.
68+
2. You must have elevated permissions (sudo) on your machine.
69+
Run the following command to install and apply the CEF collector:
70+
71+
`sudo wget -O cef_installer.py https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/DataConnectors/CEF/cef_installer.py&&sudo python cef_installer.py [Workspace ID] [Workspace Primary Key]`
72+
73+
2. Forward SonicWall Firewall Common Event Format (CEF) logs to Syslog agent
74+
75+
Set your SonicWall Firewall to send Syslog messages in CEF format to the proxy machine. Make sure you send the logs to port 514 TCP on the machine's IP address.
76+
77+
Follow Instructions. Then Make sure you select local use 4 as the facility. Then select ArcSight as the Syslog format.
78+
79+
3. Validate connection
80+
81+
Follow the instructions to validate your connectivity:
82+
83+
Open Log Analytics to check if the logs are received using the CommonSecurityLog schema.
84+
85+
It may take about 20 minutes until the connection streams data to your workspace.
86+
If the logs are not received, run the following connectivity validation script:
87+
88+
1. Make sure that you have Python on your machine using the following command: python -version
89+
2. You must have elevated permissions (sudo) on your machine
90+
Run the following command to validate your connectivity:
91+
92+
`sudo wget -O cef_troubleshoot.py https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/DataConnectors/CEF/cef_troubleshoot.py&&sudo python cef_troubleshoot.py [Workspace ID]`
93+
94+
4. Secure your machine
95+
96+
Make sure to configure the machine's security according to your organization's security policy.
97+
98+
99+
[Learn more >](https://aka.ms/SecureCEF)
100+
101+
102+
103+
## Next steps
104+
105+
For more information, go to the [related solution](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/sonicwall-inc.sonicwall-networksecurity-azure-sentinal?tab=Overview) in the Azure Marketplace.

0 commit comments

Comments
 (0)