# Quickstart: Run NetoFlow

Installing and running NetoFlow is part of the steps to [Ingest NetFlow/sFlow via the NetoFlow Connector](/ingest-network-traffic-logs/netflow-sflow/traffic-source-netoflow.md).

If you have a Docker host, you can run NetoFlow in only a few seconds.

1. Create a new API key in the Fusion Portal from the **Settings > User Management > API Keys** page using the role `neto_flow` and copy the `netosecret` value provided to you. Set this in the `NETOSECRET` environment variable on your Docker host.
2. 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
```

3\. 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)](/netoflow-connector/install-container.md). To install and run NetoFlow on your own Linux system, see [Install NetoFlow (Linux package)](/netoflow-connector/install-linux.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fusion.vectra.ai/netoflow-connector/quickstart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
