What is the TCP (and UDP) default window size on Windows Server 2008? I think it's 1480 bytes, but I'm not sure.

Can it be changed? How?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Part of Vista and Server 2008 is a next-generation TCP stack... it's auto-tuned, so there is no more TCPWindowSize tweak.

As far as changing it, you can turn auto-tuning on or off with these commands...

netsh int tcp set global autotuninglevel=normal
netsh int tcp set global autotuninglevel=disable
link|improve this answer
feedback

Also note that the window size is not necessarily the same size as the MTU. It may be significantly larger - autotuning decides the best size for the network state.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.