nfdump is a powerful suite of tools for collecting, processing, and analyzing NetFlow, IPFIX, and sFlow data from network devices. It supports advanced filtering, aggregation, and enrichment (geolocation, AS, Tor) of flow data with a focus on efficiency, flexibility, and extensibility.
- Features
- Compatibility
- Installation
- Configuration Options
- Basic Usage
- Included Tools
- Compression
- How nfdump Works
- Sampling
- NetFlow/NSEL/NAT Support
- Related Projects
- Sponsorship
- License
- Collects NetFlow (v1, v5/v7, v9, IPFIX) and sFlow data.
- Multi-threaded for high-performance processing and sorting.
- Advanced flow filtering and aggregation (filter syntax similar to tcpdump, but optimized for flow data).
- Supports user-defined flow aggregation.
- Enriches flow records with geolocation, AS, and Tor exit node information.
- Flexible output formats (text, CSV, JSON, and user-defined).
- Optionally integrates GeoDB (geolookup/Maxmind) and TorDB (torlookup) databases.
- Companion tools for extending functionality and integration with monitoring stacks.
- Actively maintained and compatible with NfSen.
-
nfdump-1.7.x (codename “unicorn”) is the current release series.
-
Fully compatible with files created by nfdump-1.6.18 or newer.
-
Legacy flow files from earlier versions may lack certain fields. Use nfdump-1.6.17 to update such records where necessary.
-
To convert old files to the new format:
./nfdump -r old-flowfile -y -w new-flowfile
-
Note: Only
nfdumpcan read legacy nfdump-1.6.x files; all other programs require the new format. -
NfSen Users: Upgrade NfSen to the latest GitHub version for full compatibility. Some legacy binaries (e.g., nfprofile, nftrack) are still available but may be deprecated in future releases.
nfdump uses the GNU autotools build system.
./autogen.sh
./configure
make
sudo make installyum install centos-release-scl
yum install devtoolset-8-gcc devtoolset-8-gcc-c++
scl enable devtoolset-8 -- bashsudo apt-get install clang-10
CC=clang-10 ./configure ...By default ./configure builds:
- the collectors
nfcapd,sfcapd nfdumpfor processing flows- additional tools
geolookup, andtorlookup
For a full list, run ./configure --help. Options include:
--enable-nfpcapdBuildnfpcapdto create NetFlow from interface or pcap traffic (default: NO)--enable-ja4Enable all JA4 fingerprinting modules (default: NO)--enable-jnatSupport JunOS special NAT event logging (default: NO)--enable-readpcapEnable reading flow data from pcap files in nfcapd (default: NO)--enable-ftconvBuild the flow-tools to nfdump converter (default: NO)--enable-nfprofileBuild nfprofile and nftrack, required by NfSen (default: NO)--enable-develEnable debugging aqnd developer options. For developers only (default: NO)--with-lz4=PATH,--with-zstd=PATH,--with-bz2=PATHSpecify non-default library install locations for compression libraries.
Compared to previous versions, the configure script has changed: many tools that previously required explicit enabling are now built automatically. The old options --enable-xxxpath=path have been replaced by the standard --with-xxx=path
Compression libraries are searched for and integrated, if found. If you want to explicitly disable a library and therefore a compression method, use the format --enable-xxx=no This disables that library.
The following options no longer exist:
--enable-nsel
NSEL support is built-in by default; you only need to adjust the output format if you prefer the legacy line or long format for NSEL/NAT. Change the fmt formats accordingly in the config file nfdump.conf
Please note, that nfprofile is a legacy binary, used by NfSen and may be moved into a separate archive in future.
Exporter → nfcapd → nfdump → analysis/export (CSV, JSON, InfluxDB, Prometheus)
nfdump provides a set of collection and processing tools. Common tools and example commands:
nfcapd -D -S 2 -w /flow_base_dir/router1 -p 23456nfdump -r /flow_base_dir/router1/nfcapd.202501011200nfdump -r flowfile 'src ip 192.0.2.1 and dst port 443' -A srcip,dstipEnable and configure geolookup/torlookup databases as needed. For details, see the relevant man pages (man geolookup, man torlookup).
Send metrics to InfluxDB or Prometheus-compatible tools using nfinflux or nfexporter.
nfdump includes several related tools for extended workflows:
-
nfcapd NetFlow collector daemon. Collects NetFlow version v1/v5/v7/v9 and IPFIX streams from one or many exporters and stores the flow record data in nfdump binary files.
-
sfcapd sFlow collector daemon. Collects sflow v4/v6 (sflowtool compatible) streams from one or many exporters and stores the flow record data in nfdump binary files.
-
nfpcapd Converts live traffic from a host interface or pcap-captured network traffic to NetFlow records. Stores the flow record data in nfdump binary files or forwards a data stream to a running
nfcapdcollector on another host. -
nfdump Reads nfdump binary files, filters flow records and post-processes flow records. The extensive filter language (See the available cheatsheet ) selects flows for processing. The post-processing includes:
- Flexible flow aggregation
- Flow statistics, based on any flow element
- Flow listings
- Flow enrichment with optional geo and/or tor exit node information.
-
geolookup Look up IP addresses for country, region, city, and optionally AS information. Requires a geo database to work. See the provided
updateGeoDB.shscript in order to build the database. -
torlookup Look up IP addresses for Tor exit node information. Requires a TorDB database to work. See the provided
updateTorDB.shscript in order to build the database. -
nfanon Anonymizes IP addresses in flow records using CryptoPAn.
-
nfexpire Manages expiration of old flow data.
-
nfreplay Replays collected NetFlow data to another collector.
-
ft2nfdump Converts flow-tools format to nfdump format. (optionally built)
-
nfprofile and nftrack
Programs required by NfSen.
nfprofilefilters and organizes flows by profile, andnftrackprovides port tracking for the PortTracker plugin. -
nfreader Framework for custom C code to process nfdump files. Not installed by default.
Collected data files can be compressed using LZO, LZ4, ZSTD, or bzip2.
- LZO and LZ4 are embedded and require no external dependencies by default.
- ZSTD and bzip2 require system libraries, auto-detected at build time.
- To compress on the fly, use the
-zoption, e.g.-z=lz4.
Example:
nfcapd -z=lz4 ...- Use bzip2 for maximum compression when archiving; use LZ4 (recommended) for fast, efficient real-time compression.
nfdump is designed to analyze both historical and live NetFlow data, enabling continuous or retrospective monitoring of network traffic. The system is optimized for speed and efficiency, allowing complex filtering and aggregation of flow records with a syntax similar to tcpdump.
- All collected data is stored to disk before analysis, separating collection from processing.
- Data is organized in a time-based directory structure, typically rotating files every 5 minutes.
Example directory structure:
/flow_base_dir/router1
/flow_base_dir/router2
Each subdirectory corresponds to a different flow source.
Example file rotation:
nfcapd.YYYYMMDDhhmm (e.g., nfcapd.200907110845 contains data from July 11th 2009 08:45 onward)
With a 5-minute interval, there are 288 files per day.
While multiple flow sources can be sent to a single collector, it is recommended to run multiple collectors on busy networks.
Start two collectors on different ports:
nfcapd -D -S 2 -B 1024000 -w /flow_base_dir/router1 -p 23456
nfcapd -D -S 2 -B 1024000 -w /flow_base_dir/router2 -p 23457Collect all sources into the same file:
nfcapd -D -S 2 -w /flow_base_dir/routers -p 23456Split collected data per source:
nfcapd -D -S 2 -n router1,172.16.17.18,/flow_base_dir/router1 \
-n router2,172.16.17.20,/flow_base_dir/router2 -p 23456See nfcapd(1) for a detailed explanation of all options.
- No root privileges are required unless binding to ports < 1024.
- nfcapd has no built-in access control; rely on host-level security to filter IP addresses.
Data can be analyzed from a single file or by concatenating multiple files. Output can be in ASCII text or binary format for further processing.
Example:
nfdump -r /flow_base_dir/router1/nfcapd.202501011200The filter syntax is powerful and inspired by tcpdump but tailored for flow data. For example:
nfdump -r flowfile 'src ip 192.0.2.1 and dst port 443'Filter rules can be combined, and flows can be aggregated and output in various formats, including CSV for post-processing.
Enable NetFlow on an interface:
interface fastethernet 0/0
ip address 192.168.92.162 255.255.255.224
ip route-cache flow
Export NetFlow data:
ip flow-export 192.168.92.218 9995
ip flow-export version 5
ip flow-cache timeout active 5
This breaks up long-lived flows into 5-minute segments. You can set any number of minutes between 1 and 60.
NetFlow v9 full export example with sampling:
interface Ethernet1/0
ip address 192.168.92.162 255.255.255.224
duplex half
flow-sampler my-map
!
!
flow-sampler-map my-map
mode random one-out-of 5
!
ip flow-cache timeout inactive 60
ip flow-cache timeout active 1
ip flow-capture fragment-offset
ip flow-capture packet-length
ip flow-capture ttl
ip flow-capture vlan-id
ip flow-capture icmp
ip flow-capture ip-id
ip flow-capture mac-addresses
ip flow-export version 9
ip flow-export template options export-stats
ip flow-export template options sampler
ip flow-export template options timeout-rate 1
ip flow-export template timeout-rate 1
ip flow-export destination 192.168.92.218 9995
See your device documentation for full details on NetFlow configuration.
Note: NetFlow v5 and v7 use 32-bit counters, which may overflow on busy routers. To prevent overflow, reduce the flow-cache timeout. All nfdump tools use 64-bit counters internally.
- The binary file format is NetFlow version independent but architecture-dependent (little vs. big endian).
- Internally, all processing is IP protocol independent (supports IPv4 and IPv6).
By default, the sampling rate is 1 (unsampled) or the value specified via -s. If the NetFlow stream contains sampling information, that value takes precedence. Nfcapd automatically recognizes sampling when announced in v9/IPFIX option templates with tags set (#302, #304, #305, #306, #48, #49, #50, #34, #35), or in the unofficial v5 header hack. The sampling data is stored in the sampling information fields in the flow record.
Note: Not all platforms (or vendor software versions) support exporting sampling information in NetFlow data, even if sampling is configured. The number of bytes and packets in each NetFlow record is automatically multiplied by the sampling rate. The total number of flows is not changed as this is not accurate enough (small flows versus large flows).
- Supports Cisco NSEL (Network Event Security Logging) and NEL (NAT Event Logging) via NetFlow v9.
- Partially compatible with JunOS NAT Event Logging (enable with
--enable-jnat).
- go-nfdump: Read nfdump files in Go.
- nfinflux: Export metrics to InfluxDB.
- nfexporter: Export metrics for Prometheus.
- NfSen: Old legacy graphical frontend.
If you find nfdump useful, please consider supporting development:
GitHub Sponsors: phaag
nfdump is released under the BSD license. See the LICENSE file for details.
- For detailed usage instructions, consult the man pages (
man nfdump,man nfcapd, etc.) or run any tool with the-hswitch. - Feel free to open issues or pull requests.
- For other questions please see my email address in the AUTHORS.
- For the latest updates, visit the nfdump repository on GitHub.