-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Currently I maintain a small patch to flow tools at my site to silence the
ftpdu_seq_check() message, which freaks out if you have multiple flow sources
feeding into a single capture.
Currently we just hard compile it out, but if I clean this up to make it an cmd
line option, would you integrate it? We'd much rather stop hanging onto the
local patch.
Without it our logs get FLOODED with the messages due to the level of traffic
and duplicate sequence numbers.
fterr_warnx(
"ftpdu_seq_check(): src_ip=%s dst_ip=%s d_version=%d expecting=%lu received=%lu lost=%lu",
fmt_src_ip, fmt_dst_ip, (int)ftpdu.ftv.d_version,
(u_long)ftch_recexpp->ftseq.seq_exp,
(u_long)ftch_recexpp->ftseq.seq_rcv,
(u_long)ftch_recexpp->ftseq.seq_lost);
Alternatively, can you suggest any alternative means with flow-fanout to get
rid of the warnings? (If it really is an issue, I'd rather fix it properly if
possible.)
Original issue reported on code.google.com by nn...@neulinger.org on 28 Sep 2012 at 4:38