i have one big pcap files and my objective is to extract only certain timestamp period of the traces (for example, the dataset time start from 0 to 200, but i only want between 50 - 100 seconds).
i tried to use editcap tools and use this command
editcap -A "50.000000000" -B "100.000000000" input_file output_file
since my dataset time field shows this format. The problem is, it give error
"editcap: "50.000000000" isn't a valid time format"
i tried in other way, for example, according to wireshark website, the format should be like this and also end with the same error.
The time is given in the following format YYYY-MM-DD HH:MM:SS
Some of the discussed solution in net is to use quote but also give me the error
"YYYY-MM-DD HH:MM:SS"
The question is, what is the real format to use the editcap tool to fulfil my objective above.