Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to start capturing with Wireshark using command line but the default output file is pcap extension but Wireshark - pcapng file type and I need libpcap file type. My command is

tshark.exe" -i interfacenumber -W MyFile.pcap

I also tried

tshark.exe" -i 1 -F libpcap -W MyFile.pcap

and in this case no file created on my disk although I can see the packets in the command line window

share|improve this question

2 Answers

tshark.exe -i 1 -F libpcap -w MyFile.pcap`

is the right answer (note the lower case 'w').

(-W does something different. There's lot's of tshark options, so you need to look carefully at the tshark -h output to make sure you're using the right option).

share|improve this answer

Since the -F libpcap option is not working for me either, I'm using another command line tool in the same directory:

editcap -F libpcap currentFile.pcap(ng) libpcapConvertedFile.pcap where "currentFile.whatever" is the pcapng-formatted file and "libpcapConvertedFile.whatever" is the outputted legacy libpcap format.

I run this once tshark is done capturing the original file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.