Collect Trellix Network Security (formerly FireEye NX) logs
This guide explains how you can ingest Trellix Network Security (formerly known as FireEye NX) logs to Google Security Operations using the Bindplane.
Trellix Network Security is a network threat protection solution that detects and blocks advanced, targeted, and other evasive attacks hiding in web traffic. It uses a combination of signature-based and signatureless analysis engines—including Multi-Vector Virtual Execution (MVX)—to identify and stop zero-day exploits, malware callbacks, and other advanced threats in real time.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance.
- A host running Windows Server 2016 or later, or a Linux host with
systemd. - Network connectivity between the Bindplane agent and the Trellix NX appliance.
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements.
- Privileged access to the Trellix Network Security (NX) management console or Central Management System (CMS) appliance.
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 the Bindplane agent 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 the 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](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](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 the Bindplane agent installation guide.
Configure the Bindplane agent to ingest syslog and send to Google SecOps
Locate the configuration file
- Linux:
/etc/bindplane-agent/config.yaml - Windows:
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/fireeye_nx: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<CUSTOMER_ID>' endpoint: malachiteingestion-pa.googleapis.com log_type: FIREEYE_NX raw_log_field: body ingestion_labels: service: pipelines: logs/fireeye_nx_to_chronicle: receivers: - udplog exporters: - chronicle/fireeye_nx
Configuration parameters
Replace the following placeholders:
- Receiver configuration:
listen_address: IP address and port to listen on.0.0.0.0to listen on all interfaces.- Port
514is standard (requires root). Use1514or higher for non-root users.
- Exporter configuration:
creds_file_path: Full path to the ingestion authentication file.<CUSTOMER_ID>: Your Customer ID from the Google SecOps console.endpoint: Regional endpoint URL (e.g.,malachiteingestion-pa.googleapis.com). See Regional Endpoints for the complete list.
Save the configuration file
After editing, save the file:
* Linux: Press Ctrl+O, then Enter, then Ctrl+X.
* Windows: Click File > Save.
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 forwarding on Trellix Network Security
- Sign in to the Trellix Network Security console with an administrator account.
- Go to Settings > Notifications.
- Click the rsyslog tab.
- Check the Event type check box to enable rsyslog notifications.
- In the Rsyslog Settings area, select CEF as the Default format.
- In the Rsyslog Server Listing section, click Add Rsyslog Server.
- Provide the following configuration details:
- Enabled: Check the checkbox.
- IP Address: Enter the IP address of the Bindplane agent host.
- Port: Enter the agent port (e.g.,
514). - Protocol: Select UDP or TCP (matching your agent configuration).
- Event Types: Select the event types to forward (select all for comprehensive logging).
- Click Update to save.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
alert.dst.ip |
target.ip, target.asset.ip |
Direct mapping. |
alert.dst.mac |
target.mac, target.asset.mac |
Direct mapping. |
alert.dst.port |
target.port |
Direct mapping. |
alert.name |
metadata.product_event_type |
Direct mapping. |
alert.occurred |
metadata.event_timestamp |
Direct mapping. |
alert.src.ip |
principal.ip, principal.asset.ip |
Direct mapping. |
alert.src.port |
principal.port |
Direct mapping. |
log_id |
metadata.product_log_id |
Direct mapping. |
response_code |
network.http.response_code |
Direct mapping. |
user_id |
principal.user.userid |
Direct mapping. |
| N/A | metadata.event_type |
Set based on presence of IP, hostname, or user ID (e.g., SCAN_UNCATEGORIZED, STATUS_UPDATE). |
| N/A | metadata.log_type |
Set to FIREEYE_NX. |
| N/A | metadata.vendor_name |
Set to FireEye. |
| N/A | security_result.action |
ALLOW if "notified", BLOCK if "blocked". |
| N/A | is_alert |
Set to true. |
Need more help? Get answers from Community members and Google SecOps professionals.