🏁 Quickstart: Run NetoFlow
Installing and running NetoFlow is part of the steps to Ingest NetFlow/sFlow via the NetoFlow Connector.
If you have a Docker host, you can run NetoFlow in only a few seconds.
- Create a new API key in the Fusion Portal from the Settings > User Management > API Keys page using the role
neto_flow
and copy thenetosecret
value provided to you. Set this in theNETOSECRET
environment variable on your Docker host. - Run this command on your Docker host:
docker run -e NETO__ENDPOINT__NETOSECRET="$NETOSECRET" \
-p 2055:2055 -p 8080:8080 \
--name netoflow \
--platform linux/amd64 \
public.ecr.aws/netography/netoflow:latest
- You can now send NetFlow and sFlow to UDP port 2055 on your Docker host. Ensure there are no local firewalls that may be blocking this traffic. Once you are delivering flow records to the host, check they are being received and processed by reading the statistics from the NetoFlow API:
curl localhost:8080/api/v1/stats/rate
To see all the details and options for configuring and running the NetoFlow container, see Install NetoFlow (container). To install and run NetoFlow on your own Linux system, see Install NetoFlow (Linux package).
Updated about 1 month ago