Does not load the frontend when accessed from outside the server

0

I have a .NET web application developed with C # MVC4. It is hosted on an IIS running on Windows Server 2012, and running, as long as it is accessed from the server as follows:

  

link

But when I access from outside the server

  

link

I can not get all of the HTML content loaded, it does not really load anything, just the following error message:

  

{Layout = null; } Error. Error processing the request.

It should be noted that I have already reviewed the routes and configurations of the system, install it in the corresponding folder, but still I can not see the interface from the outside.

Can you help find the problem? Thank you very much.

    
asked by Diego Flores 08.09.2016 в 19:54
source

1 answer

-1

If you can access inside the server but it's not outside of me, it sounds like a network problem. You can check this by executing a telnet command from the machine to which you want to access the site in the following way:

telnet IPServidor 80

If you have specified another port for the IIS site you should place it instead of 80. If you give an error message either because the server is not accessible from the machine or because the server blocks requests with the specified port.

    
answered by 08.09.2016 в 22:45