I am trying to calculate RTT values via scapy on run time. The same task I did with wireshark as well. But values from both does not match at all. I can get an accurate timestamp via sendpfast()
method provided in scapy but how to capture and display at the same time? Like It could be done with send-receive sr()
function of scapy. The RTT captured by scapy and wireshark can be seen below.
**scapy** **wireshark**
0.1039998531 0,110971
0.0880000591 0,001198
0.1029999256 0,096224
0.0959999561 0,012241
0.1109998226 0,001866
0.0909998417 0,11562
0.1110000610 0,002541
0.1029999256 0,116533
0.1029999256 0,001403
0.1030001640 0,102193
0.1009998322 0,002144
You can check the RFC1323, and calculate the RTT using TSval and TSecr. To avoid complexity, you can just try with SYN-SYN/ACK-ACK on three-way-handshake, when the connection is stablished. Something like this...