When I make multiple file as 100mb.. It appeared on currently capturing session. It seems to be temporary message... but it's not finished until I close Wireshark.... please help me.. It happened to stable version of Wireshark 1.8.4 asked 27 Jan '13, 18:10 SSH edited 28 Jan '13, 11:21 cmaynard ♦♦ |
2 Answers:
Try using dumpcap instead. It's a command line tool that you can use to capture packets to disk, and you'll find it in the Wireshark installation directory. Wireshark uses dumpcap itself to capture files, so you can do the same. Use A typical dumpcap call could look like this:
to capture on interface 1, write to file "capture.pcapng" and create a new file each 100MB. In fact, if you use -b like that, each filename will have date and time and a running number added to it to become unique. answered 27 Jan '13, 18:55 Jasper ♦♦ edited 28 Jan '13, 11:24 cmaynard ♦♦ |