Help with using dumpcap to monitor 24/7 but retain only 20 minutes
Hello Forum,
I found this post on your archive forum - https://osqa-ask.wireshark.org/questi...
The following command will create a new capture file every 20 minutes (1200 Seconds). It will rotate the capture files, keeping only the latest five.
dumpcap -ni 1 -w c:\temp\phone_problem.pcap -b duration:1200 -b files:5
I'm using Wireshark version 4.0.1 on Windows and I have a similar need. I'm filtering on my MAC address:
eth.addr==xx:xx:xx:xx:xx:xx
I see that dumpcap is a separate executable. Where do I add into this wireshark the dumpcap command to create a packet every 20 minutes and still filter by my MAC address? My hardware is having an issue whereby it goes offline. I don't want to create a massive packet capture file. I'm hoping to create a smaller log that captures when the device went offline.
Thank you.