Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-users: Re: [Wireshark-users] Run TShark + USBPcap forever on Windows

From: Evan Huus <eapache@xxxxxxxxx>
Date: Sun, 05 Feb 2017 16:13:34 +0000

On Sat, Feb 4, 2017 at 11:11 Matthew Dierker <matthew.dierker@xxxxxxxxx> wrote:
Hi! I'm using TShark to pipe USB packets on Windows from USBPcap to a Python program. TShark is run using Python's subprocess library. I'm having TShark echo the results to a subprocess.PIPE object as json, and I'm reading that in from the Python code. As far as I know, no packets are ever written to a file.

It's all working fine, but TShark eventually decides it's time to exit, notated by "XXX packets captured" printed to stderr. My goal is to have this run indefinitely in the background, and a silent restart isn't a great option because of the UAC dialog that pops up each time. Any idea why TShark decides to exit if it isn't hitting a file limit?

Sample Params: tshark.exe -i [usb interface] -x -T json -l -Y [display filter]

You might be able to work with the ring-buffer (-b) flag to get something to work:


Evan