Fetching the TCP RTT in Linux

后端 未结 3 1014
眼角桃花
眼角桃花 2021-01-01 00:30

I need to fetch the RTT for TCP flow. I have looked into the proc file system but not able to get the RTT value of TCP .If any one having any idea regarding it that, in whic

3条回答
  •  时光说笑
    2021-01-01 01:04

    You can so this using tcpprobe (inserts a hook into the tcp_recv processing path using kprobe and records the state of a TCP connection in response to incoming packets).

    Explained here: Extract TCP round trip time (RTT) estimations on linux

提交回复
热议问题