IIS7: Server Traffic Limit

How to limit traffic for the entire server using IIS7?

There is a limited feature for the site, but it only works for a particular site:

enter image description here

There is also a Bitrate Throtting plugin for IIS, but as I know it can only be configured for an individual user:

enter image description here

Is there a way to set traffic limits for the entire server, and not for a single website?

UPDATE: The solution (thanks to @Arpit) sets <webLimits maxGlobalBandwidth="1000000" /> to the machine configuration. But be careful! There is a mistake in the IIS docs: you must enter maxGlobalBand[w]idth (with lowercase w ) and not maxGlobalBand[w]idth (with uppercase w ).

+7
source share
1 answer

Well, I have not tried it yet, but you can give it pleasure -

In IIS7, select the server and open the Configuration Editor . In the right panel there is the ability to search for a configuration. We are looking for webLimits here.

It could be the key. More information on webLimits can be found here.

EDIT - I found this attribute for webLimits that should help:

maxGlobalBandwidth - indicates the maximum total throughput for the server. Setting the value to 0 allows you to use unlimited bandwidth for the server. The default value is 4294967295.

+7
source

All Articles