This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

SMPP Capture : Want to Read submit_sm count per second

0

tshark -nr C:\Users\Ravi kiran\Documents\atctest1.pcap -R "smpp.command_id == 0x80000004" -T fields -E header=y -E separator=; -e frame.time_relative -e frame.number

my out put: tshark: Read filters were specified both with "-R" and with additional command-l ine arguments.

asked 04 Aug '14, 04:35

newbeets's gravatar image

newbeets
1111
accept rate: 0%

tshark version?

(04 Aug '14, 04:52) grahamb ♦

Tshark 1.8.2

(04 Aug '14, 13:18) newbeets

One Answer:

1

tshark -nr C:\Users\Ravi kiran\Documents\atctest1.pcap

looks like a quote problem in the DoS box, due to the blank in the path. Please try this:

tshark -nr "C:\Users\Ravi kiran\Documents\atctest1.pcap" -R "smpp.command_id == 0x80000004" -T fields -E header=y -E separator=; -e frame.time_relative -e frame.number

Regards
Kurt

answered 04 Aug '14, 14:54

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

Thank you Kurt,Its resolved.

(05 Aug '14, 05:53) newbeets

good to hear!

(05 Aug '14, 06:54) Kurt Knochner ♦