How can I control which IP address IIS7 uses? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:19:28Z http://stackoverflow.com/feeds/question/661070 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/661070/how-can-i-control-which-ip-address-iis7-uses 0 How can I control which IP address IIS7 uses? Brennan 2009-03-19T04:30:01Z 2009-04-25T03:07:17Z <p>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.</p> <p>What utility for IIS7 controls the IIS7 bindings?</p> <p>Update: I found the answer. There is a utility called netsh.</p> <p>netsh http add iplisten ipaddress=xxx.xxx.xxx.xxx</p> <p>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.</p> http://stackoverflow.com/questions/661070/how-can-i-control-which-ip-address-iis7-uses/788142#788142 1 Answer by Brennan for How can I control which IP address IIS7 uses? Brennan 2009-04-25T03:00:13Z 2009-04-25T03:00:13Z <p>Update: I found the answer. There is a utility called netsh.</p> <p>netsh http add iplisten ipaddress=xxx.xxx.xxx.xxx</p> <p>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.</p> http://stackoverflow.com/questions/661070/how-can-i-control-which-ip-address-iis7-uses/788151#788151 0 Answer by Chad Grant for How can I control which IP address IIS7 uses? Chad Grant 2009-04-25T03:07:17Z 2009-04-25T03:07:17Z <p>Just click the "Sites" folder in IIS manager and it lists all the bindings.</p> <p>*:80 would be the bound to all IP's all unassigned</p> <p>or</p> <p>[hostheader] on *:80</p>