Collect NETSCOUT Arbor Edge Defense logs
This document explains how to ingest NETSCOUT Arbor Edge Defense (AED) logs to Google Security Operations using Bindplane.
NETSCOUT Arbor Edge Defense is a network security appliance that sits at the perimeter between your internal network and the internet. It provides automated DDoS protection, threat intelligence-based blocking, and reputation analysis to stop inbound and outbound threats before they can impact network availability or compromise resources.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance
- Windows Server 2016 or later, or Linux host with
systemd - Network connectivity between the Bindplane agent and NETSCOUT Arbor Edge Defense appliance
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Privileged access to the NETSCOUT Arbor Edge Defense web UI with administrator role
Get Google SecOps ingestion authentication file
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Collection Agents.
Download the Ingestion Authentication File. Save the file securely on the system where Bindplane will be installed.
Get Google SecOps customer ID
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Profile.
Copy and save the Customer ID from the Organization Details section.
Install the Bindplane agent
Install the Bindplane agent on your Windows or Linux operating system according to the following instructions.
Windows installation
- Open Command Prompt or PowerShell as an administrator.
Run the following command:
msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quietWait for the installation to complete.
Verify the installation by running:
sc query observiq-otel-collector
The service should show as RUNNING.
Linux installation
- Open a terminal with root or sudo privileges.
Run the following command:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.shWait for the installation to complete.
Verify the installation by running:
sudo systemctl status observiq-otel-collector
The service should show as active (running).
Additional installation resources
For additional installation options and troubleshooting, see Bindplane agent installation guide.
Configure the Bindplane agent to ingest syslog and send to Google SecOps
Locate the configuration file
Linux:
sudo systemctl status observiq-otel-collectorWindows:
notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
Edit the configuration file
Replace the entire contents of
config.yamlwith the following configuration:receivers: udplog: listen_address: "0.0.0.0:514" exporters: chronicle/arbor_edge_defense: compression: gzip creds_file_path: '<PLACEHOLDER_CREDS_FILE_PATH>' customer_id: '<PLACEHOLDER_CUSTOMER_ID>' endpoint: malachiteingestion-pa.googleapis.com log_type: ARBOR_EDGE_DEFENSE raw_log_field: body ingestion_labels: env: production service: pipelines: logs/arbor_to_chronicle: receivers: - udplog exporters: - chronicle/arbor_edge_defense
Configuration parameters
Replace the following placeholders:
Receiver configuration:
udplog: UDP syslog receiver for NETSCOUT Arbor Edge Defense log forwarding0.0.0.0:514: IP address and port to listen on. Replace the port as required in your infrastructure
Exporter configuration:
<PLACEHOLDER_CREDS_FILE_PATH>: Full path to ingestion authentication file:- Linux:
/etc/bindplane-agent/ingestion-auth.json - Windows:
C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
- Linux:
<PLACEHOLDER_CUSTOMER_ID>: Google SecOps customer IDmalachiteingestion-pa.googleapis.com: Regional endpoint URL. Replace with the appropriate endpoint for your region:- US:
malachiteingestion-pa.googleapis.com - Europe:
europe-malachiteingestion-pa.googleapis.com - Asia:
asia-southeast1-malachiteingestion-pa.googleapis.com - See Regional Endpoints for complete list
- US:
Save the configuration file
- After editing, save the file:
- Linux: Press
Ctrl+O, thenEnter, thenCtrl+X - Windows: Click File > Save
- Linux: Press
Restart the Bindplane agent to apply the changes
To restart the Bindplane agent in Linux:
Run the following command:
sudo systemctl restart observiq-otel-collectorVerify the service is running:
sudo systemctl status observiq-otel-collectorCheck logs for errors:
sudo journalctl -u observiq-otel-collector -f
To restart the Bindplane agent in Windows:
Choose one of the following options:
- Command Prompt or PowerShell as administrator:
net stop observiq-otel-collector && net start observiq-otel-collector- Services console:
- Press
Win+R, typeservices.msc, and press Enter. - Locate observIQ OpenTelemetry Collector.
- Right-click and select Restart.
- Press
Verify the service is running:
sc query observiq-otel-collectorCheck logs for errors:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
Configure syslog export on NETSCOUT Arbor Edge Defense
- Sign in to the NETSCOUT Arbor Edge Defense web UI.
- Go to Administration > Notifications > Notification Destinations.
- Click Add to create a new syslog destination.
Provide the following configuration details:
- Host: Enter the IP address or hostname of the Bindplane agent host.
- Protocol: Select UDP.
- Syslog Format: Select CEF.
Click Save.
Click Config Commit to apply the configuration changes.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
src_ip |
principal.ip |
The value is taken from the src_ip field. |
src_port |
principal.port |
The value is taken from the src_port field and converted to an integer. |
dst_ip |
target.ip |
The value is taken from the dst_ip field. |
dst_port |
target.port |
The value is taken from the dst_port field and converted to an integer. |
protocol |
network.ip_protocol |
The value is taken from the protocol field and mapped to the IP protocol. |
action |
security_result.action |
Mapped based on the action: blocked maps to BLOCK, passed maps to ALLOW. |
alert_type |
security_result.category_details |
The value is taken from the alert_type field. |
severity |
security_result.severity |
Mapped based on the severity level. |
description |
metadata.description |
The value is taken from the description field. |
metadata.event_type |
Derived from available fields: NETWORK_CONNECTION if source and destination IP are present; otherwise GENERIC_EVENT. |
|
metadata.product_name |
Set to Arbor Edge Defense. |
|
metadata.vendor_name |
Set to NETSCOUT. |
Change Log
View the Change Log for this parser
Need more help? Get answers from Community members and Google SecOps professionals.