Using -V and -b causes ring buffer to fail?
Hello,
Hello, I'm having an issue with TShark (Wireshark) 4.4.7 on Ubuntu 24.04.2
I'm trying to get Tshark to run continuously while printing packet details with -V to stdout I want to use -b to split the capture every so often to cut down on memory/storage usage.
Running like this runs the ring buffer just fine, but without the packet details I need
tshark -b filesize:1000 -b files:2 -w /tmp/test
Running like this prints the packet details I need, but after the file size limit is reached, tshark stops instead of moving to the next file
tshark -V -b filesize:1000 -b files:2 -w /tmp/test
Does anyone know a way around this or a fix?