HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ipaggcreate — Produce aggregate statistics of TCP/IP dumps. More information: <https://manned.org/ipaggcreate>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
ipaggcreatecommandaggregatedumpstcpcliproducestatistics

Problem

How to use the ipaggcreate command: Produce aggregate statistics of TCP/IP dumps. More information: <https://manned.org/ipaggcreate>.

Solution

ipaggcreate — Produce aggregate statistics of TCP/IP dumps. More information: <https://manned.org/ipaggcreate>.

Count the number of packets sent from each source address appearing in a PCAP file:
ipaggcreate --src {{path/to/file.pcap}}


Group and count packets read from a network interface by IP packet length:
ipaggcreate --interface {{eth0}} --length


Count the number of bytes sent between each address pair appearing in a PCAP file:
ipaggcreate --address-pairs --bytes {{path/to/file.pcap}}

Code Snippets

Count the number of packets sent from each source address appearing in a PCAP file

ipaggcreate --src {{path/to/file.pcap}}

Group and count packets read from a network interface by IP packet length

ipaggcreate --interface {{eth0}} --length

Count the number of bytes sent between each address pair appearing in a PCAP file

ipaggcreate --address-pairs --bytes {{path/to/file.pcap}}

Context

tldr-pages: common/ipaggcreate

Revisions (0)

No revisions yet.