I need to disrupt socket pooling in Iis6. I'm reading a KB article on how
to do it. The following is a quote:

"By default, IIS 6.0 listens on all IP addresses. You can specify the IP
addresses IIS will listen on by adding them to the IP inclusion list."

Suppose I've three IP addresses:
- 192.168.1.1
- 172.16.1.1
- 10.1.1.1

According to the quote, Iis6 listens to all three addresses. I move
172.16.1.1 to some sort of inclusion list for Iis6 to listen to this address.

What's the net effect? Iis6 keeps listening to 192.168.1.1 and 10.1.1.1 by
default, and to 172.16.1.1 because I moved it to some list manually.

Pray, enlighten me.

RE: socket pooling in iis6 by JackieJa

JackieJa
Fri Dec 09 10:28:47 CST 2005

By default, this inclusion list is blank, and IIS will listen on all IP
addresses. If you add IP addresses to his inclusion list, then IIS will
only listen on those IP addreses included in the inclusion list.

So, if you add 172.16.1.1 to this inclusion list, and not the other 2 IP
addresses, then IIS will only listen on 172.16.1.1 and not the other two.

Thank you,

Jackie Jaynes [MSFT]
Microsoft IIS

Please do not send email directly to this alias. This
is our online account name for newsgroup participation only.

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2001 Microsoft Corporation. All rights
reserved.




RE: socket pooling in iis6 by billtie

billtie
Fri Dec 09 11:44:01 CST 2005


> So, if you add 172.16.1.1 to this inclusion list,
> and not the other 2 IP addresses, then IIS will
> only listen on 172.16.1.1 and not the other two.

Aah. Ain't it wicked?

Thank you, Jackie.