Change the value of the congestion control window

For my research, I would like to manually control the size of the TCP congestion control window.

I want the explicit window limiting to shrink when / ack segment loss occurs on the testnet.

Is this even possible?

I've been looking for ways to do this using Python, Netem and Scapy. I have access to windows and Linux (ubuntu 12).

+3


source to share


1 answer


On kernels up to 2.6.33, you can try

ip route change default via x.x.x.x initcwnd new-val initrwnd new-val

      



Also have a look at this

+1


source







All Articles