Flowtriq DDoS Detection Agent - Real-time traffic monitoring, attack detection, PCAP capture, and auto-mitigation for Linux servers.
A valid Flowtriq account and API key are required. Start a free 7-day trial at flowtriq.com.
docker run -d \
--name ftagent \
--network host \
--cap-add NET_RAW \
--cap-add NET_ADMIN \
-e FTAGENT_API_KEY=your_api_key \
-e FTAGENT_NODE_UUID=your_node_uuid \
flowtriq/ftagentservices:
ftagent:
image: flowtriq/ftagent:latest
container_name: ftagent
restart: unless-stopped
network_mode: host
cap_add:
- NET_RAW
- NET_ADMIN
environment:
- FTAGENT_API_KEY=your_api_key
- FTAGENT_NODE_UUID=your_node_uuid
- FTAGENT_INTERFACE=eth0
volumes:
- ftagent-data:/var/lib/ftagent
- ftagent-logs:/var/log/ftagent
volumes:
ftagent-data:
ftagent-logs:| Variable | Required | Default | Description |
|---|---|---|---|
FTAGENT_API_KEY |
Yes | - | Your Flowtriq API key |
FTAGENT_NODE_UUID |
Yes | - | Node UUID from your Flowtriq dashboard |
FTAGENT_INTERFACE |
No | eth0 |
Network interface to monitor |
FTAGENT_API_URL |
No | https://api.flowtriq.com |
API endpoint |
Alternatively, mount your own config file:
docker run -d \
--name ftagent \
--network host \
--cap-add NET_RAW \
--cap-add NET_ADMIN \
-v /path/to/config.json:/etc/ftagent/config.json \
flowtriq/ftagent--network hostis required for the agent to see real network trafficNET_RAWandNET_ADMINcapabilities are required for packet capture- A Flowtriq account with an API key and Node UUID
- Sign up at flowtriq.com
- Go to Dashboard > Nodes > Add Node
- Copy the API key and Node UUID
latest- Latest stable releasex.y.z- Specific version (e.g.,1.9.10)