Re: TCP flags packet counting
John Gerth <[email protected]> Sat, 8 Dec 2018 21:05:53 -0800
| Newsgroups | gmane.network.argus |
|---|---|
| Organization | Stanford University |
| Message-ID | <25984_1544331958_wB955u0u099158_2267b625-cc7e-4569-266e-42d0f82af8a1@graphics.stanford.edu> |
All flow systems, and argus is a flow system, produce records which contain summaries of a connecton's traffic. For the TCP flags field, the record contains the logical OR of the flags seen during the reporting interval rather than counts for each flag. To get counts for each flag, one could use tcpdump to capture and print the fields you need from each packet which would be input to a program you write to generate the counts. However, this approach is probably only feasible if the total number of packets processed is relatively small. On 12/8/18 12:01 PM, Masoud Sadri wrote: > Hi, > In addition of total packets in each record I need to know the number of syn,ack,fin,rst,urg,psh,cwr,ece packets separably. > Could you help me, please? >