1. Fortu Analyzer Connector Configuration in XDR
- Log in to the XDR platform.
- Navigate to Connectors > Ingestion.
- Select Event Connector and click Configure.
- Enter the Collector ID and Password.
- Click Validate and Save.
2. System Requirements
✅ Prerequisites:
- A system with a Static IP address.
- Docker Engine installed. Download from:
https://docs.docker.com/get-docker
Start the Docker service:
systemctl start docker
Identify and note your system’s IP address.
3. Firewall Port Configuration
For Linux/macOS:
firewall-cmd --permanent --add-port=514/udp
firewall-cmd --reload
For Windows (PowerShell as Administrator):
New-NetFirewallRule -DisplayName "Allow UDP Port 514" -Direction Inbound -Protocol UDP -LocalPort 514 -Action Allow
New-NetFirewallRule -DisplayName "Allow UDP Port 514" -Direction Outbound -Protocol UDP -LocalPort 514 -Action Allow
4. Docker Setup for Event Collector
Download the Docker image using the following URL (replace placeholders):
https://connectors-xdr.seqrite.com/connectors/collector/download?collectorId=<COLLECTOR_ID>&password=<COLLECTOR_PASSWORD>&tid=<TENANT_ID>
Load the image:
docker load --input <path_to/hhcollector-1.0.0.tar>
Run the collector:
docker run -p 514:514/udp \
--env COLLECTOR_ID=<COLLECTOR_ID> \
--env TID=<TENANT_ID> \
hhcollector
5. FortiAnalyzer & FortiGate Configuration
On FortiGate Firewall:
- Go to Logs & Report > Log Settings.
-
Under Global Settings, enable:
- Address Logging
- Event Logging
- Local Traffic Logging
- Syslog Logging
- Enter the IP address of the FortiAnalyzer.
- Click Apply.
On FortiAnalyzer Interface:
- Go to Device Manager > Add Device.
-
Enter:
- Name
- FortiGate Serial Number
- Click Next, then Finish.
Log Forwarding Configuration:
- Go to System Settings > Advanced > Log Forwarding.
- Under Syslog Server, click Add.
-
Set:
- IP Address: Event Collector machine IP
- Port:
514
(UDP)
- Save and apply the configuration.