Neha
Neha

Reputation: 2965

Configuring a website In IIS7, Network access issue

I have configured a website on my server machine & it is working till am accessing it on server itself but a machine in network is not able to access this.

Please help me how to make it available to all in network.

I have checked its Application pool. The application is in .net version 2.0

I have tried it with IP, Name of machine & even with port changed.

Upvotes: 0

Views: 187

Answers (3)

Alex Pollan
Alex Pollan

Reputation: 873

What kind of message do you see in the browser when you navigate to the site?

You must open any port you are using on the Windows firewall (if it's not the default port 80).

Upvotes: 2

danywalls
danywalls

Reputation: 709

if you website you can see inside the server is true;

then: Check firewall settings allow IIS Web Server ? Did you check IIS allow Anonymous Access ?

Upvotes: 2

Diego
Diego

Reputation: 16714

If it's not the default site in the IIS you have to make it respond to some specific port or domain.

Once you do you can access by:

  1. <IP>:<SelectedPort>
  2. <ServerName>:<SelectedPort>

If you specified a port.

If you specified a domain in the other PC you have to add to the host file one line with the IP of the server and the domain you entered. This is the temporary solution until the domain is yours and the DNS point to your server.

Upvotes: 0

Related Questions