限制IIS中

时间:2015-06-30 12:10:55

标签: asp.net iis upload bandwidth bandwidth-throttling

我想限制IIS中的上传带宽。我的场景是每个用户只能上传300kbps。

我在IIS中检查MaxBandwidth但是它限制了不是每个用户的用户总数。 我也检查Throttling Bandwidth,但它限制了下载带宽。

那么如何限制IIS中每个用户或每个文件的上传带宽?

1 个答案:

答案 0 :(得分:0)

我认为您无法对IIS中的网站单线程(单一连接)施加带宽限制。 相反,你可以使用这样的东西,用于最大连接

   <limits maxBandwidth="65536"
         maxConnections="1024"
         connectionTimeout="00:01:00" />

请检查以下网址:

http://www.iis.net/configreference/system.applicationhost/sites/site/limits

要限制上传,请查看以下网址:

https://support.microsoft.com/en-us/kb/942074