Anyone knows, please tell me. Your help is highly appreciated. asked 01 Dec '13, 22:10 Eliza Rana edited 01 Dec '13, 22:19 |
2 Answers:
You can use tshark as following on Linux/OSX:
or if your on Windwos and tshark is not in your path open Command Prompt aka CMD:
You can view all options of tshark command with -h:
Let us know. answered 02 Dec '13, 02:59 Edmond |
All the info you need for tshark can be found on the man page, or a summary by giving tshark a For filters, you need to look at Capture Filters and Display Filters. Which one to use depends on your task and environment. answered 02 Dec '13, 02:52 grahamb ♦ edited 02 Dec '13, 02:52 |
Thanks for your help, Edmond. I would like to ask you one more question.
Here is my assignment: Plot time-series graph for number of TCP packets per 1 second.
I am plotting this graph using R programming in Windows. And I have to read csv file(that is transformed from pcap file) into R and then plot the time-series graph. In order to plot a graph, there must be 2 values x and y. So I consider x as frame.time. And the y must be the number of TCP packet per 1 second, but I don't know what it is and how to calculate it.
So could you help me please?