It seems like your browser didn't download the required fonts. Please revise your security settings and try again.
Barracuda CloudGen Firewall

Streaming to Azure Log Analytics via the Barracuda Log Analytics Daemon

  • Last updated on

The Barracuda Log Analytics Daemon allows streaming logs from the Barracuda CloudGen Firewall or Control Center to an Azure Log Analytics Workspace. The daemon supports all CloudGen appliances: Cloud, virtual, and hardware boxes, all starting with firmware version 9.0.4.

The Barracuda Log Analystics Daemon provides the same functionality as its deprecated predecessors and therefore replaces the OMS Agent and the Azure Monitor Agent. Thus, third-party extensions no longer have to be installed, and on-premise boxes no longer must be imported into Azure.

Data Formats for Syslog Streaming

By using the syslog format, the Barracuda Log Analytics Daemon streams all CGF/CGCC logs to the Azure Log Analytics syslog table. Alternatively, a few logs can be streamed to the Azure Common Security Log table using the common event format (CEF).

Data Categories Streamed to Azure Log Analytics

You can stream all logs using the syslog format.

The only two logs that a CloudGen firewall can stream in CEF format are:

  • Firewall Activity Log

  • Firewall Threat Log

In this example, the following data categories will be streamed to Azure Log Analytics for the Firewall Activity Log and the Firewall Threat Log:

  • Firewall Activity Log

    • Action taken

    • Source IP

    • Source port

    • Destination IP

    • Destination port

  • Firewall Threat Log

    • Threat description

    • Action taken

    • Source IP

    • Destination IP

    • Destination port

    • Protocol

    • User name

Each of these streams is related to certain event IDs:

Log File Type

Log File (on file-system)

Event ID

Firewall Activity Log

box_Firewall_activity.log

100

Firewall Threat Log

box_Firewall_threat.log

200

The Barracuda Log Analytics Daemon uses the Azure log ingestion API. For this, one or more data collection rule(s) must be configured in the same region as the target Log Analytics Workspace.

Templates

Barracuda provides ARM templates that can be used to create the necessary data collection rule(s).

  1. For the syslog, download the template (bn-azure-log-analytics-dcr-syslog.json):

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "workspace_name": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace name"
            }
        },
        "workspace_id": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace ID"
            }
        },
        "workspace_resource_group": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace resource group (default is the same as for the deployment)"
            },
            "defaultValue": ""
        },
        "workspace_region": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace region (default is the same region as the deployment's resource group)"
            },
            "defaultValue": ""
        }
    },
    "variables": {
        "workspace_resource_group": "[if(empty(parameters('workspace_resource_group')), resourceGroup().name, parameters('workspace_resource_group'))]",
        "workspace_region": "[if(empty(parameters('workspace_region')), resourceGroup().location, parameters('workspace_region'))]",
        "destination_name": "[replace(parameters('workspace_id'), '-', '')]",
        "dcr_name": "[concat('bn-slg-', guid(parameters('workspace_id'), variables('workspace_region')))]",
        "dce_name": "[concat('bn-slg-', guid(parameters('workspace_id'), variables('workspace_region')))]",
        "stream_name": "Custom-BNAZLADSYSLOG_CL"
    },
    "resources": [
        {
            "type": "Microsoft.Insights/dataCollectionEndpoints",
            "apiVersion": "2023-03-11",
            "name": "[variables('dce_name')]",
            "location": "[variables('workspace_region')]",
            "properties": {
                "configurationAccess": {},
                "logsIngestion": {},
                "metricsIngestion": {},
                "networkAcls": {
                    "publicNetworkAccess": "Enabled"
                }
            }
        },
        {
            "type": "Microsoft.Insights/dataCollectionRules",
            "apiVersion": "2023-03-11",
            "name": "[variables('dcr_name')]",
            "location": "[variables('workspace_region')]",
            "dependsOn": [
                "[resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))]"
            ],
            "properties": {
                "dataCollectionEndpointId": "[resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))]",
                "streamDeclarations": {
                    "[variables('stream_name')]": {
                        "columns": [
                            {
                                "name": "TimeGenerated",
                                "type": "datetime"
                            },
                            {
                                "name": "EventTime",
                                "type": "datetime"
                            },
                            {
                                "name": "ProcessName",
                                "type": "string"
                            },
                            {
                                "name": "Computer",
                                "type": "string"
                            },
                            {
                                "name": "SyslogMessage",
                                "type": "string"
                            }
                        ]

                    }
                },
                "dataSources": {},
                "destinations": {
                    "logAnalytics": [
                        {
                            "workspaceResourceId": "[resourceId(variables('workspace_resource_group'), 'Microsoft.OperationalInsights/workspaces', parameters('workspace_name'))]",
                            "name": "[variables('destination_name')]"
                        }
                    ]
                },
                "dataFlows": [
                    {
                        "streams": [
                            "[variables('stream_name')]"
                        ],
                        "destinations": [
                            "[variables('destination_name')]"
                        ],
                        "transformKql": "source",
                        "outputStream": "Microsoft-Syslog"
                    }
                ]
            }
        }
    ],
    "outputs": {
        "dcr_immutable_id": {
            "type": "string",
            "value": "[reference(resourceId('Microsoft.Insights/dataCollectionRules', variables('dcr_name'))).immutableId]"
        },
        "dcr_stream": {
            "type": "string",
            "value": "[variables('stream_name')]"
        },
        "dcr_endpoint_log_ingestion_uri": {
            "type": "string",
            "value": "[reference(resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))).logsIngestion.endpoint]"
        }
    }
}
  1. For the security log table, download the template (bn-azure-log-analytics-dcr-cef.json):

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "workspace_name": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace name"
            }
        },
        "workspace_id": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace ID"
            }
        },
        "workspace_resource_group": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace resource group (default is the same as for the deployment)"
            },
            "defaultValue": ""
        },
        "workspace_region": {
            "type": "String",
            "metadata": {
                "description": "Target log analytics workspace region (default is the same region as the deployment's resource group)"
            },
            "defaultValue": ""
        }
    },
    "variables": {
        "workspace_resource_group": "[if(empty(parameters('workspace_resource_group')), resourceGroup().name, parameters('workspace_resource_group'))]",
        "workspace_region": "[if(empty(parameters('workspace_region')), resourceGroup().location, parameters('workspace_region'))]",
        "destination_name": "[replace(parameters('workspace_id'), '-', '')]",
        "dcr_name": "[concat('bn-cef-', guid(parameters('workspace_id'), variables('workspace_region')))]",
        "dce_name": "[concat('bn-cef-', guid(parameters('workspace_id'), variables('workspace_region')))]",
        "stream_name": "Custom-BNAZLADCEF_CL"
    },
    "resources": [
        {
            "type": "Microsoft.Insights/dataCollectionEndpoints",
            "apiVersion": "2023-03-11",
            "name": "[variables('dce_name')]",
            "location": "[variables('workspace_region')]",
            "properties": {
                "configurationAccess": {},
                "logsIngestion": {},
                "metricsIngestion": {},
                "networkAcls": {
                    "publicNetworkAccess": "Enabled"
                }
            }
        },
        {
            "type": "Microsoft.Insights/dataCollectionRules",
            "apiVersion": "2023-03-11",
            "name": "[variables('dcr_name')]",
            "location": "[variables('workspace_region')]",
            "dependsOn": [
                "[resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))]"
            ],
            "properties": {
                "dataCollectionEndpointId": "[resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))]",
                "streamDeclarations": {
                    "[variables('stream_name')]": {
                        "columns": [
                            {
                                "name": "Activity",
                                "type": "string"
                            },
                            {
                                "name": "AdditionalExtensions",
                                "type": "string"
                            },
                            {
                                "name": "ApplicationProtocol",
                                "type": "string"
                            },
                            {
                                "name": "CollectorHostName",
                                "type": "string"
                            },
                            {
                                "name": "CommunicationDirection",
                                "type": "string"
                            },
                            {
                                "name": "Computer",
                                "type": "string"
                            },
                            {
                                "name": "DestinationDnsDomain",
                                "type": "string"
                            },
                            {
                                "name": "DestinationHostName",
                                "type": "string"
                            },
                            {
                                "name": "DestinationIP",
                                "type": "string"
                            },
                            {
                                "name": "DestinationMACAddress",
                                "type": "string"
                            },
                            {
                                "name": "DestinationNTDomain",
                                "type": "string"
                            },
                            {
                                "name": "DestinationPort",
                                "type": "int"
                            },
                            {
                                "name": "DestinationProcessId",
                                "type": "int"
                            },
                            {
                                "name": "DestinationProcessName",
                                "type": "string"
                            },
                            {
                                "name": "DestinationServiceName",
                                "type": "string"
                            },
                            {
                                "name": "DestinationTranslatedAddress",
                                "type": "string"
                            },
                            {
                                "name": "DestinationTranslatedPort",
                                "type": "int"
                            },
                            {
                                "name": "DestinationUserID",
                                "type": "string"
                            },
                            {
                                "name": "DestinationUserName",
                                "type": "string"
                            },
                            {
                                "name": "DestinationUserPrivileges",
                                "type": "string"
                            },
                            {
                                "name": "DeviceAction",
                                "type": "string"
                            },
                            {
                                "name": "DeviceAddress",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomDate1",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomDate1Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomDate2",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomDate2Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint1",
                                "type": "real"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint1Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint2",
                                "type": "real"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint2Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint3",
                                "type": "real"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint3Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint4",
                                "type": "real"
                            },
                            {
                                "name": "DeviceCustomFloatingPoint4Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address1",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address1Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address2",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address2Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address3",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address3Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address4",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomIPv6Address4Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomNumber1",
                                "type": "int"
                            },
                            {
                                "name": "DeviceCustomNumber1Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomNumber2",
                                "type": "int"
                            },
                            {
                                "name": "DeviceCustomNumber2Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomNumber3",
                                "type": "int"
                            },
                            {
                                "name": "DeviceCustomNumber3Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString1",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString1Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString2",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString2Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString3",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString3Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString4",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString4Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString5",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString5Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString6",
                                "type": "string"
                            },
                            {
                                "name": "DeviceCustomString6Label",
                                "type": "string"
                            },
                            {
                                "name": "DeviceDnsDomain",
                                "type": "string"
                            },
                            {
                                "name": "DeviceEventCategory",
                                "type": "string"
                            },
                            {
                                "name": "DeviceEventClassID",
                                "type": "string"
                            },
                            {
                                "name": "DeviceExternalID",
                                "type": "string"
                            },
                            {
                                "name": "DeviceFacility",
                                "type": "string"
                            },
                            {
                                "name": "DeviceInboundInterface",
                                "type": "string"
                            },
                            {
                                "name": "DeviceMacAddress",
                                "type": "string"
                            },
                            {
                                "name": "DeviceName",
                                "type": "string"
                            },
                            {
                                "name": "DeviceNtDomain",
                                "type": "string"
                            },
                            {
                                "name": "DeviceOutboundInterface",
                                "type": "string"
                            },
                            {
                                "name": "DevicePayloadId",
                                "type": "string"
                            },
                            {
                                "name": "DeviceProduct",
                                "type": "string"
                            },
                            {
                                "name": "DeviceTimeZone",
                                "type": "string"
                            },
                            {
                                "name": "DeviceTranslatedAddress",
                                "type": "string"
                            },
                            {
                                "name": "DeviceVendor",
                                "type": "string"
                            },
                            {
                                "name": "DeviceVersion",
                                "type": "string"
                            },
                            {
                                "name": "EndTime",
                                "type": "datetime"
                            },
                            {
                                "name": "EventCount",
                                "type": "int"
                            },
                            {
                                "name": "EventOutcome",
                                "type": "string"
                            },
                            {
                                "name": "EventType",
                                "type": "int"
                            },
                            {
                                "name": "ExternalID",
                                "type": "int"
                            },
                            {
                                "name": "ExtID",
                                "type": "string"
                            },
                            {
                                "name": "FieldDeviceCustomNumber1",
                                "type": "long"
                            },
                            {
                                "name": "FieldDeviceCustomNumber2",
                                "type": "long"
                            },
                            {
                                "name": "FieldDeviceCustomNumber3",
                                "type": "long"
                            },
                            {
                                "name": "FileCreateTime",
                                "type": "string"
                            },
                            {
                                "name": "FileHash",
                                "type": "string"
                            },
                            {
                                "name": "FileID",
                                "type": "string"
                            },
                            {
                                "name": "FileModificationTime",
                                "type": "string"
                            },
                            {
                                "name": "FileName",
                                "type": "string"
                            },
                            {
                                "name": "FilePath",
                                "type": "string"
                            },
                            {
                                "name": "FilePermission",
                                "type": "string"
                            },
                            {
                                "name": "FileSize",
                                "type": "int"
                            },
                            {
                                "name": "FileType",
                                "type": "string"
                            },
                            {
                                "name": "FlexDate1",
                                "type": "string"
                            },
                            {
                                "name": "FlexDate1Label",
                                "type": "string"
                            },
                            {
                                "name": "FlexNumber1",
                                "type": "int"
                            },
                            {
                                "name": "FlexNumber1Label",
                                "type": "string"
                            },
                            {
                                "name": "FlexNumber2",
                                "type": "int"
                            },
                            {
                                "name": "FlexNumber2Label",
                                "type": "string"
                            },
                            {
                                "name": "FlexString1",
                                "type": "string"
                            },
                            {
                                "name": "FlexString1Label",
                                "type": "string"
                            },
                            {
                                "name": "FlexString2",
                                "type": "string"
                            },
                            {
                                "name": "FlexString2Label",
                                "type": "string"
                            },
                            {
                                "name": "IndicatorThreatType",
                                "type": "string"
                            },
                            {
                                "name": "LogSeverity",
                                "type": "string"
                            },
                            {
                                "name": "MaliciousIP",
                                "type": "string"
                            },
                            {
                                "name": "MaliciousIPCountry",
                                "type": "string"
                            },
                            {
                                "name": "MaliciousIPLatitude",
                                "type": "real"
                            },
                            {
                                "name": "MaliciousIPLongitude",
                                "type": "real"
                            },
                            {
                                "name": "Message",
                                "type": "string"
                            },
                            {
                                "name": "OldFileCreateTime",
                                "type": "string"
                            },
                            {
                                "name": "OldFileHash",
                                "type": "string"
                            },
                            {
                                "name": "OldFileID",
                                "type": "string"
                            },
                            {
                                "name": "OldFileModificationTime",
                                "type": "string"
                            },
                            {
                                "name": "OldFileName",
                                "type": "string"
                            },
                            {
                                "name": "OldFilePath",
                                "type": "string"
                            },
                            {
                                "name": "OldFilePermission",
                                "type": "string"
                            },
                            {
                                "name": "OldFileSize",
                                "type": "int"
                            },
                            {
                                "name": "OldFileType",
                                "type": "string"
                            },
                            {
                                "name": "OriginalLogSeverity",
                                "type": "string"
                            },
                            {
                                "name": "ProcessID",
                                "type": "int"
                            },
                            {
                                "name": "ProcessName",
                                "type": "string"
                            },
                            {
                                "name": "Protocol",
                                "type": "string"
                            },
                            {
                                "name": "Reason",
                                "type": "string"
                            },
                            {
                                "name": "ReceiptTime",
                                "type": "string"
                            },
                            {
                                "name": "ReceivedBytes",
                                "type": "long"
                            },
                            {
                                "name": "RemoteIP",
                                "type": "string"
                            },
                            {
                                "name": "RemotePort",
                                "type": "string"
                            },
                            {
                                "name": "ReportReferenceLink",
                                "type": "string"
                            },
                            {
                                "name": "RequestClientApplication",
                                "type": "string"
                            },
                            {
                                "name": "RequestContext",
                                "type": "string"
                            },
                            {
                                "name": "RequestCookies",
                                "type": "string"
                            },
                            {
                                "name": "RequestMethod",
                                "type": "string"
                            },
                            {
                                "name": "RequestURL",
                                "type": "string"
                            },
                            {
                                "name": "SentBytes",
                                "type": "long"
                            },
                            {
                                "name": "SimplifiedDeviceAction",
                                "type": "string"
                            },
                            {
                                "name": "SourceDnsDomain",
                                "type": "string"
                            },
                            {
                                "name": "SourceHostName",
                                "type": "string"
                            },
                            {
                                "name": "SourceIP",
                                "type": "string"
                            },
                            {
                                "name": "SourceMACAddress",
                                "type": "string"
                            },
                            {
                                "name": "SourceNTDomain",
                                "type": "string"
                            },
                            {
                                "name": "SourcePort",
                                "type": "int"
                            },
                            {
                                "name": "SourceProcessId",
                                "type": "int"
                            },
                            {
                                "name": "SourceProcessName",
                                "type": "string"
                            },
                            {
                                "name": "SourceServiceName",
                                "type": "string"
                            },
                            {
                                "name": "SourceSystem",
                                "type": "string"
                            },
                            {
                                "name": "SourceTranslatedAddress",
                                "type": "string"
                            },
                            {
                                "name": "SourceTranslatedPort",
                                "type": "int"
                            },
                            {
                                "name": "SourceUserID",
                                "type": "string"
                            },
                            {
                                "name": "SourceUserName",
                                "type": "string"
                            },
                            {
                                "name": "SourceUserPrivileges",
                                "type": "string"
                            },
                            {
                                "name": "StartTime",
                                "type": "datetime"
                            },
                            {
                                "name": "ThreatConfidence",
                                "type": "string"
                            },
                            {
                                "name": "ThreatDescription",
                                "type": "string"
                            },
                            {
                                "name": "ThreatSeverity",
                                "type": "int"
                            },
                            {
                                "name": "TimeGenerated",
                                "type": "datetime"
                            },
                            {
                                "name": "Type",
                                "type": "string"
                            }
                        ]
                    }
                },
                "dataSources": {},
                "destinations": {
                    "logAnalytics": [
                        {
                            "workspaceResourceId": "[resourceId(variables('workspace_resource_group'), 'Microsoft.OperationalInsights/workspaces', parameters('workspace_name'))]",
                            "name": "[variables('destination_name')]"
                        }
                    ]
                },
                "dataFlows": [
                    {
                        "streams": [
                            "[variables('stream_name')]"
                        ],
                        "destinations": [
                            "[variables('destination_name')]"
                        ],
                        "transformKql": "source",
                        "outputStream": "Microsoft-CommonSecurityLog"
                    }
                ]
            }
        }
    ],
    "outputs": {
        "dcr_immutable_id": {
            "type": "string",
            "value": "[reference(resourceId('Microsoft.Insights/dataCollectionRules', variables('dcr_name'))).immutableId]"
        },
        "dcr_stream": {
            "type": "string",
            "value": "[variables('stream_name')]"
        },
        "dcr_endpoint_log_ingestion_uri": {
            "type": "string",
            "value": "[reference(resourceId('Microsoft.Insights/dataCollectionEndpoints', variables('dce_name'))).logsIngestion.endpoint]"
        }
    }
}

Create Data Collection Rules

Data collection rules are required both for each log analytics workspace and for streaming the logs to the syslog and the common security log tables. Note that alongside each data collection rule, a data collection endpoint is also created.

For creating data collection rules, you have two options:

Option #1: To create data collection rules via the Azure UI, perform the following steps:
  1. To stream the logs in the common event format (CEF), Azure Sentinel must be added to the corresponding Log Analytics Workspace.

azure-add-sentinel-to-log-analytics-00.png
  1. Ensure that you have downloaded the required templates.

  2. Unless you have done so, expand the two forms in the paragraph Templates and save the code-content of each template into a separate file with the mentioned filename.

  3. Open the Azure Web Portal, search for “Deploy a custom template” in the search bar at the top of the page, and open the corresponding page.

  4. On the “Custom deployment” page that opens, select Build your own template in the editor.

custom_deployment_initial_page.png

  1. Replace the sample template in the editor with the contents of the template that you saved before and which you want to deploy.

custom_deployment_save_template.png

  1. Save the template and fill in the parameters for the deployment.

    1. The following options are mandatory:

      1. Subscription ID

      2. Resource Group

      3. Region

      4. Log analytics Workspace_name

      5. Log analytics Workspace_id

    2. If you chose to deploy into a different resource group as the one containing the log analytics workspace:

      1. Workspace_resource_group

    3. If you deploy into a resource group differing from the one containing the log analytics workspace, and if the resource group is also in a different region, you must specify the log analytics workspace region:

      1. Workspace_region

    4. Click Review + create and run the deployment.

custom_deployment_parameters.png

  1. As soon as the deployment is finished, click Outputs in the left column to open the Outputs page.

  2. Because you will need certain values later, write them down from the following edit fields:

    1. dcr_immutable_id

    2. dcr_stream

    3. dcr_endpoint_log_ingestion_uri

Option #2: To create data collection rules via Powershell or CLI, perform the following steps:
  1. Sample command for deploying via PowerShell:

New-AzResourceGroupDeployment -TemplateFile <path_to_template_file> -ResourceGroupName <resource_group_to_deploy_into> -workspace_name <target_log_analytics_ws_name> -workspace_id <target_log_analytics_ws_id> -workspace_resource_group <target_log_analytics_ws_resource_group> -workspace_region <target_log_analytics_ws_region>
  1. Sample command for deploying via CLI:

$ az deployment group create --template-file <path_to_template_file> -g <resource_group_to_deploy_into> --parameters workspace_name=<target_log_analytics_ws_name> --parameters workspace_id=<target_log_analytics_ws_id> --parameters workspace_resource_group=<target_log_analytics_ws_resource_group> --parameters workspace_region=<target_log_analytics_ws_region>

Configure Streaming in Barracuda Firewall Admin

The syslog streaming configuration is the same as for the Common Security Log tables, except that the log destination is Azure Log Analytics Syslog via CGF Log Daemon.

The following example relates to the configuration for the Common Security Log tables. Also, this configuration only covers a smaller subset of the logs and requires single data selections for the filters.

To configure the Common Security Log tables, perform the following steps:

  1. Log into Barracuda Firewall Admin.

  2. Go to CONFIGURATION > Configuration Tree > Box > Infrastructure Services > Syslog Streaming.

  3. In the navigation column, click Logdata Filters.

  4. Click Lock.

  5. Click '+'.

  6. The window Filters is displayed.

syslog_streaming_new_filter.png

  1. Enter the name of the filter.

  2. Click OK… .

  3. The window Filters is displayed.

  4. In the section Affected Service Logdata, select None for Data Selector.

  5. In the section Affected Box Logdata, select Selection for Data Selector.

  6. Click '+'.

  7. The Data Selection Window is displayed.

syslog_streaming_new_filter_new_data_selection.png

  1. Enter the name for Data Selection.

  2. The window Data Selection is displayed.

  3. Click '+' for Log Groups.

  4. Click the newly created line in the list.

  5. Select Firewall-Activity-Only from the list.

syslog_streaming_new_filter_new_data_selection_items.png

  1. Repeat steps 10 - 18 and add another data selection log group for Firewall-Threat-Only.

syslog_streaming_complete_filter.png

  1. In the left navigation column, click Logstream Destinations.

  2. In the Destination Configuration section, click '+'.

  3. The Destinations window opens.

  4. Enter the name for the destination.

  5. Click OK… .

syslog_streaming_new_destination.png

  1. The Destination window is displayed.

  2. In the Destination Address section, select Azure Log Analytics CEF via Log Daemon.

syslog_streaming_new_destination_logstream_destination.png

  1. In the Azure Data Collection Rule Configuration section, enter the values from the MS-Template-Outputs in Step 9.

    1. dcr_immutable_id

    2. dcr_stream

    3. dcr_endpoint_log_ingestion_uri

syslog_streaming_new_destination_complete_01.png

  1. Click OK.

  2. In the left menu column, click Logdata Streams to add a new stream.

  3. In the section Logstream Configuration, click '+'.

  4. The Streams window is displayed.

  5. Enter the name for the new stream.

  6. Click OK… .

syslog_streaming_new_stream.png

  1. The Streams window is displayed.

  2. In the Stream Configuration section, ensure that yes is selected for Active Stream.

  3. For Log Destinations, select Azure Log Analytics Syslog via CGF Log Daemon (analog to Step 26).

  4. Select the required filters for Log Filters from the list.

  5. Click OK and complete all configurations.

  6. Finalize the configuration by clicking Send Changes/Activate.

syslog_streaming_new_stream_complete.png

Configure Authentication and Enable the Log Daemon

The Azure Log Analytics daemon needs a service principal that has permissions to write to the Data Collection Rules and the Log Analytics workspace.

Note that if the Azure Log Analytics daemon is enabled in Cloud Integration, but no streaming configuration is set that allows the log streaming, no streaming will be performed. However, as soon as a configuration is created, the Azure Log Analytics daemon will immediately start to stream.

To configure the credentials of this service principal, perform the following steps:

  1. Go to CONFIGURATION > Configuration Tree > Box > Advanced Settings > Cloud Integration > Azure Log Analytics.

  2. In the Azure Log Analytics section:

    1. Enable log streaming to Azure – Select yes to enable streaming.

    2. Enter the Service Principal Client ID.

    3. Enter the Service Principal Client Secret.

    4. Enter the Service Principal Tenant ID.

cloud_integration_azure_log_analytics.png