Ask Your Question
0

how do i track data usuage from all devices on my network?

asked 2019-04-27 12:09:08 +0000

zorrindrax gravatar image

i have monthly data cap on my network and need to know what is being used by each device to stay within my monthly limit.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-04-27 15:09:17 +0000

Bob Jones gravatar image

Handling a month's worth of pcap files and summarizing them is certainly possible but there could be some serious work to this and scripting would be a BIG help to provide automation. Look at the stats options available with

tshark -z

To rollup by IP, something like this produces a simple table:

tshark -q -z endpoints,ip -r <pcap file>
================================================================================
IPv4 Endpoints
Filter:<No Filter>
               |  Packets  ||  Bytes  || Tx Packets || Tx Bytes || Rx Packets || Rx Bytes |
224.0.0.1          1            60           0             0             1        60

or the Wireshark Statistics->Endpoints tool for a capture loaded in the GUI.

However, it's probably best to use a different product; for free/open source have a look at

https://www.ntop.org/products/traffic-analysis/ntop/

This might be good for home use. For professional use/non-free software, you could try something from these guys:

https://www.liveaction.com/products/omnipeek/

Netflow solutions could come into play here too - I am sure there are many other options.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2019-04-27 12:09:08 +0000

Seen: 262 times

Last updated: Apr 27 '19