vote up 0 vote down star
1

In Win2k3 I used httpcfg to tell IIS to listen to specific IP addresses on the server. I want to run Apache with VisualSVN Server on port 80 on another IP address but IIS7 binds to all ports by default.

What utility for IIS7 controls the IIS7 bindings?

Update: I found the answer. There is a utility called netsh.

netsh http add iplisten ipaddress=xxx.xxx.xxx.xxx

By default there are not IP addresses on the list so IIS7 will bind to all IP addressed. If you add one IP to the list it will listen to just that IP or any IP added to the list. It is necessary to restart IIS7 for the change to take affect.

flag

45% accept rate
Could you re-post your answer as a separate answer, and then accept it, so others (a) know this one's been answered and (b) others with the same problem can easily identify the solution? – Rob Apr 21 at 21:39

2 Answers

vote up 0 vote down

Just click the "Sites" folder in IIS manager and it lists all the bindings.

*:80 would be the bound to all IP's all unassigned

or

[hostheader] on *:80

link|flag
vote up 1 vote down check

Update: I found the answer. There is a utility called netsh.

netsh http add iplisten ipaddress=xxx.xxx.xxx.xxx

By default there are not IP addresses on the list so IIS7 will bind to all IP addressed. If you add one IP to the list it will listen to just that IP or any IP added to the list. It is necessary to restart IIS7 for the change to take affect.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.