This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

TCP - CWND

0
2

Is there any way to check CWND ?

asked 18 Apr '15, 22:14

srinu_bel's gravatar image

srinu_bel
20151620
accept rate: 0%


2 Answers:

2

Similar question here.

Basically it is not something that you will see as a value in a packet capture.

If you have Linux on the sending host you can do the following:

  • check the available and used congestion algorithm with "sysctl -a | grep congestion"
  • see the cwnd of all the established connections with "ss -ti"
  • see the cwnd for the last connections with "ip route show cache"

answered 19 Apr '15, 02:22

Roland's gravatar image

Roland
7642415
accept rate: 13%

1

No, not from packets.

answered 19 Apr '15, 01:53

Jasper's gravatar image

Jasper ♦♦
23.8k551284
accept rate: 18%