Logging network traffic
I would like to log network traffic on my ADSL connection. The object of this is to see the changes in B/W throughout the day. I have installed wire-shark and I see that it generates a nice log file which can be exported to CSV. The problem is I would like to get the length of each packet os that I can anlayze them over time. This i开发者_开发问答nformation is not included in the CSV. Is there a way to expose this in a text file CSV or other format?
As far as I know, Wireshark exports only the currently displayed columns. By default, the "Packet length" column is hidden. You can show this column by the following steps:
- Right-click on a column
- Choose Column Preferences... from the context menu
- Click Add from the Preferences dialog
- In the Field Type drop-down, select Packet length (bytes).
- In the column list, click the title of your new column (default is "New Column") to edit. Change it to "Len" for example.
- If you wish, you can drag and drop list entries to change the column order (which will be reflected in the exported CSV as well as the GUI).
- Click OK. Now, your exported CSV (File > Export > as "CSV" file...) should include packet length.
精彩评论