Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS Express (WebMatrix) open for outside connections

I've already enabled firewall rules for IIS Express (HTTP Traffic In) and IIS Express (HTTPS Traffic In) on ports 80 and 2012 (this one is used in WebMatrix), but I can't connect to the server from my LAN. WebMatrix is running on a virtual Windows 7 machine.

Is this a limit of IIS Express?> Yes - you can redistribute IIS Express with your applications. There are no connection limits. ScottGu's blog

like image 407
zigomir Avatar asked Aug 14 '10 10:08

zigomir


2 Answers

It is possible though it takes some effort, there's a great blog post on this here and Vaidy talks about IIS Developer Express on the CodeCast podcast here.

like image 179
Lazarus Avatar answered Oct 03 '22 20:10

Lazarus


Is it listening on local ports only, i.e. do you see 127.0.0.1:80 not 0.0.0.0:80 on netstat -an?

I haven't played with IIS Express yet so I don't know what the default is or how to configure this.

like image 41
Rup Avatar answered Oct 03 '22 20:10

Rup