Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取 csv 格式的 netflow 记录,但由于网络中有大量流量,nfdump 以 MBytes 为单位返回信息。我别无选择,只能使用 NFDUMP 中的一个选项来获取以字节为单位的流量信息。
我当前的命令是:
nfdump -R netflow/ -q -o csv 'src net 33.1.1.0/24 and dst net 33.1.2.0/24'
假设您正在从文件中读取:
nfdump -r nfcapd.2017xxxxx -o extended -o csv
将给出标题和摘要,同时:
nfdump -r nfcapd.2017xxxxx -o extended -o csv -q
删除两者。
不太确定如何只保留标题。