5

I'm trying to "tune" the TCP/IP stack on some Windows Server 2008 machines by following the instructions here: http://www.outsystems.com/NetworkForums/ViewTopic.aspx?TopicId=6956&Topic=How-to-tune-the-TCP%2FIP-stack-for-high-volume-of-web-requests

One of the suggestions is to increase the dynamic port range and I've tried doing so but it fails:

C:\Windows\system32>netsh int ipv4 set dynamicportrange tcp start=32767 num=65535
The parameter is incorrect.

My question is: which parameter is incorrect?

Kiril
  • 179
  • 1
  • 4
  • 10

2 Answers2

7

You have to run:

netsh int ipv4 set dynamicport tcp start=32765 num=32765

This would set your dynamic port range to start at port 32765 and go through port 65530 (32765 ports)

RomeNYRR
  • 1,439
  • 9
  • 16
1

Try netsh int ipv4 set dynamicportrange tcp start=32767 num=32768

pk.
  • 6,413
  • 1
  • 41
  • 63