1ft2nfdump(1) ft2nfdump(1)
2
3
4
6 ft2nfdump - flow-tools data converter program
7
9 ft2nfdump [options]
10
12 ft2nfdump is the flow-tools converter program to read, convert and
13 store netflow data, created with the flow-tools package. It works
14 either as a pipe filter or reads flow-tools data format directly from
15 file and exports nfdump data format at stdout.
16
17
19 -r <flow-tools-file>
20 Read flow-tools formatted netflow data from file flow-tools-file.
21 Default: Read from stdin.
22
23 -w <nfdump-file>
24 Write nfdump formatted file for converted netflow data Default:
25 Write to stdout.
26
27 -j Compress flows. Use bz2 compression in output file. Space efficient
28 methode
29
30 -z Compress flows. Use fast LZO1X-1 compression in output file. Fastest
31 method
32
33 -c num
34 Read only num flows from input file.
35
36 -E Print raw netflow records to stdout. This option is for debugging
37 purpose only, to see any incoming netflow data. Compatible to option
38 -E in nfcapd.
39
40 -V Print ft2nfdump version and exit.
41
42 -h Print help text on stdout with all options and exit.
43
45 Returns
46 0 No error.
47 255 Conversion failed.
48
50 flow-cat ft-v05.2015-05-01.* | ft2nfdump -j -w nfcap.20150501 Convert
51 files into nfdump format.
52
53 flow-cat ft-v05.2001-05-01.* | ft2nfdump | nfdump -w nfcap.20010501
54 Convert files into nfdump format.
55
56 ft2nfdump -r ft-v05.2001-05-01 | nfdump -w nfcap.20010501 Convert files
57 into nfdump format.
58
61 nfcapd(1), nfdump(1), nfprofile(1), nfreplay(1)
62
64 2009-09-09 ft2nfdump(1)