Reputation: 2491
Is there any command or script to retrieve the current TCP congestion window of a tcp connection. So suppose some communication is going on over tcp through the network interface (eg. eth0), now is there any way to dynamically (periodically) retrieve the tcp congestion window?(in Linux platform)
Upvotes: 1
Views: 2190
Reputation: 333
I recommend you to try tcpprobe. By dynamic loading tcpprobe, you can get the congestion window size.
Upvotes: 1
Reputation: 310913
Is there any command or script to retrieve the current TCP congestion window of a network interface?
No, because there isn't any such thing. Network interfaces don't have congestion windows. Connections do.
Upvotes: 3