I am trying to capture the live packets from available interface. My code is developed in go lang and for capturing purpose, I am using google's go packet library.
I am able to capture packets but I am unable to get precise timestamp.
If I run the below command and see the timestamp in wireshark, I am getting accurate difference between timestamps.
tcpdump -i device0 -j adapter_unsynced -w captureOnMachine.pcap
But, If I generate tcp dump using go packet library there is no precision.
I looked over the internet about adapter_unsynced command and saw
PCAP_TSTAMP_ADAPTER_UNSYNCED - adapter_unsynced
Time stamp provided by the network adapter on which the cap-
ture is being done. This is a high-precision time stamp; it
is not synchronized with the host operating system's clock.
Can we get same setting in docker or go packet library.
There is a warning for pcap.OpenLive:
An InactiveHandle sets the timestamp precision to nanosecond by default (see the source code). But if the hardware or software cannot supply a higher-resolution timestamp, it will fallback to microsecond resolution. If you're sure that the timestamp source
adapter_unsynced
is supported by the device and supplies a higher-resolution timestamp, you can set the timestamp source like this: