Why do I get an error with this tshark command line on Windows?
hello, my OS is Windows 7. I logged in with my WLAN data:
tshark -i 2 -w C:\chat\capture.pcap tcp port 12345
Capturing on 'Drahtlosnetzwerkverbindung 3'
21
Now I want a conversation, the port data 18677 should be selected:
tshark -r C:\chat\capture.pcap -T fields -e data 'tcp.srcport==18677' > C:\chat\outbound2.txt
tshark: "'tcp.srcport==18677'" is neither a field nor a protocol name.
what am I doing wrong?