This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

capture connections/summaries only?

0

dear sharkianers: is there any opportunity to capture nothing but date, ip & mac-address automatically each 24 hours to a file on windows? i tried the capturing with detailed options but that does log everything instead of the summary only.

asked 29 Apr '11, 11:37

Trucklejunior's gravatar image

Trucklejunior
1112
accept rate: 0%

edited 29 Apr '11, 11:38


One Answer:

2

You can use TShark:
$ tshark -i 3 -T fields -e frame.time -e ip.addr -e eth.addr -a duration:86400 > outfile.txt

You can find more information in the man-page.

answered 29 Apr '11, 13:03

joke's gravatar image

joke
1.3k4934
accept rate: 9%

i knew it must be that simple, thanks you very much indeed!

(29 Apr '11, 14:47) Trucklejunior