从SYN_RECV到ESTABLISHED的TCP状态更改需要多长时间?

时间:2019-06-05 22:17:02

标签: linux networking tcp linux-kernel ebpf

在使用eBPF时,我尝试tcpstates并注意到TCP状态转换SYN_RECV->已建立

的时间很短

我的测试编号:

SYN_RECV -> ESTABLISHED 0.015  
SYN_RECV -> ESTABLISHED 0.017  
SYN_RECV -> ESTABLISHED 0.051

handshake diagram看来,主机之间从SYN_RECV到ESTABLISHED的过渡时间应该接近RTT吗?

主机上的TCP快速打开已关闭。
操作系统:Ubuntu 18.10(GNU / Linux 4.18.0-21-generic x86_64)

是错误还是我错了?

已更新:
tcpdump -tttttv

 00:00:00.000000 IP (tos 0x28, ttl 49, id 280, offset 0, flags [DF], proto TCP (6), length 60)
    dst_host > src_host: Flags [S], cksum 0x46ae (correct), seq 4063608731, win 29200, options [mss 1460,sackOK,TS val 332512899 ecr 0,nop,wscale 6], length 0
 00:00:00.000071 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto TCP (6), length 60)
    src_host > dst_host: Flags [S.], cksum 0x84c2 (incorrect -> 0x3c01), seq 1516815880, ack 4063608732, win 28960, options [mss 1460,sackOK,TS val 2341429130 ecr 332512899,nop,wscale 7], length 0
 00:00:00.079183 IP (tos 0x28, ttl 49, id 281, offset 0, flags [DF], proto TCP (6), length 52)
    dst_host > src_host: Flags [.], cksum 0xda11 (correct), ack 1, win 457, options [nop,nop,TS val 332512918 ecr 2341429130], length 0
 00:00:00.093311 IP (tos 0x0, ttl 64, id 60333, offset 0, flags [DF], proto TCP (6), length 93)
    src_host > dst_host: Flags [P.], cksum 0x84e3 (incorrect -> 0xb341), seq 1:42, ack 1, win 227, options [nop,nop,TS val 2341429223 ecr 332512918], length 41
such low numbers are between syn_recv and syn+ack send, but between syn_recv and established it should be 00:00:00.079183

此tcpdump中主机之间的ping操作约为83ms

0 个答案:

没有答案