I'm using Windows Server 2008 Enterprise Edition in our company environment. Does IIS 7.0 have some limit connection request per ip?

Cheers,

link|improve this question

76% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Not out of the box. You'll need a custom HTTP handler or third party module that will handle monitor and perform the limiting.

link|improve this answer
Don't forget that the HTTP 1.1 standard specifies that a client should have no more than 2(or 4?) connections open to the same server at a time. I believe that IE actually honors this. (or used to) – Eric Falsken Jan 21 at 7:40
feedback

It can. If you use the Dynamic IP restriction module you can limit the number of requests per IP per time period. By default the only limitations are the ones that TCP/IP has.

link|improve this answer
feedback

No, but some application frameworks serialize based on a cookie, which can appear to behave in the same way (except it's one per unique browser instance, rather than per IP).

For example, if ASP sessions are enabled, you may find requests serialized from the same browser client.

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.