什么是限制最大并发连接? IIS? Windows服务器?

我有一个部署在IIS上的asp.net应用程序,并且最近升级了CPU和内存,使之成倍增长,希望能够支持更多的并发用户。 尽pipe在我的负载testing中,似乎服务器甚至无法处理100个并发连接。 而且,从CPU和内存的angular度来看,在负载testing期间只有大约40%的资源被使用! 在服务器上,IIS中还是在machine.config中,服务器每次同时连接的数目是有限的? 我已经添加到web.config:

<system.net> <connectionManagement> <add address="*" maxconnection="65535"/> </connectionManagement> </system.net> 

而这个给machine.config:

 <processModel enable="true" timeout="00:03:00" requestLimit="Infinite" requestQueueLimit="Infinite" maxWorkerThreads="10000" maxIoThreads="10000"/>