Não é possível acessar o IIS7 da minha rede doméstica

1

Eu tenho um IIS7 em um Windows 7 Ultimate.

O IIS7 funciona bem em computadores que hospedam o IIS7. Mas não consigo acessar o IIS7 de outro computador, recebo a seguinte mensagem: "o servidor não está respondendo".

Como posso corrigir isso?

    
por VansFannel 27.05.2011 / 12:42

3 respostas

2

Execute os seguintes testes:

  • Verifique a conectividade de ambos os computadores.
  • Configurações de firewall, desative temporariamente o firewall de todos os perfis (privado, domínio, público) se isso funcionar, tente adicionar uma Regra de porta ao seu firewall, permitindo conexões de entrada à porta 80.
  • Além disso, seria importante verificar a configuração de ligações do seu site, as ligações especificam o endereço que o servidor deve ouvir para conexões de entrada, verifique se você tem 'Todos os não atribuídos'.
por 27.05.2011 / 18:30
1

O computador está na LAN? Problemas de firewall? Tente desativar temporariamente o firewall, veja se isso ajuda.

Você pode fazer ping? Isso responde? Existem muitas razões pelas quais, por favor, nos forneça mais informações, mas esperamos que isso ajude.

    
por 27.05.2011 / 12:51
0

Se você desenvolveu seu site com o WebMatrix e, portanto, está executando o IIS 7 Express, siga estas instruções :

By default, WebMatrix binds to localhost, so if you try to use your machine name (i.e. allow other machines on the LAN) to view your site, it won’t work. The reason for this is that IIS Express (the WebMatrix web server) is designed to be run without administration rights. It’s not meant for production environments - it’s meant for simple development environments.

In order to do testing on another computer, you need to therefore make a few minor changes. Firstly, you need to be running WebMatrix as an administrator. To make the change so that WebMatrix runs as an admin by default:

  1. Close all instances of WebMatrix
  2. Find the WebMatrix executable (typically in C:\Program Files (x86)\Microsoft WebMatrix\WebMatrix.exe or C:\Program Files\Microsoft WebMatrix\WebMatrix.exe)
  3. Right click the executable, click properties, click the ‘Compatibility’ tab, and select ‘run as administrator’.
  4. Click OK.
  5. Open %USERPROFILE%\My Documents\IISExpress\config\applicationhost.config in notepad
  6. ctrl+f ), copy and paste the binding entry so that you have two copies, and change one of the bindings to “”
  7. Save & close the applicationhost.config
  8. Add a Windows firewall exception for external access to that port
  9. Launch webmatrix, and test away :)

If it bothers you, you can optionally turn of “User Account Control” on your system to prevent the admin rights prompt from coming up every time you launch the app. Remember to turn it back on later.

    
por 14.01.2013 / 21:04