I'm trying to use the following command: tshark -n -i eth0 -T fields -e _ws.col.Time -e ip.src -e ip.dst ... But the output does not display the Time. The ip.src column is moved over by a tab, compared to when _ws.col.Time is not specified. But the space is blank. What gives? Version: TShark 1.10.6 (v1.10.6 from master-1.10) THX asked 07 Apr '16, 14:42 mfox |
One Answer:
It turns out that frame.time works. But _ws.col.Time does not -- at least for me. answered 07 Apr '16, 22:35 mfox |
Column names for use with
-e
used to be prefixed withcol.
but got changed to use_ws.col.
. I'm not sure which version this occurred in, but if you check the output oftshark -h
for the description of-e
it will showcol.Info
or_ws.col.Info
indicating which to use in that version.The
_ws.
prefix was introduced starting with the 1.11.0 development release, which was announced on October 13, 2013. See the news article here: https://www.wireshark.org/news/20131015.html. The first stable release that introduced the_ws.
prefix was 1.12.0, announced on July 31, 2014. Here's that news article: https://www.wireshark.org/news/20140731.html.