Reputation: 658
I am hosting a ASP.NET application with in intranet with URL. When i host it without a specific URL it works and accessible over the intranet with my IP/computer name.
But When i try to give it some specific URL it's not accessible. Following are the images for my IIS settings
Upvotes: 0
Views: 430
Reputation: 2532
Your IIS only accepts incoming site requests for this specific URL. So what you need to do is to establish a DNS server within your intranet which tells the client to which IP to connect. The request of the client now contains the URL name and the IIS will accept the connection.
So your task will be:
Upvotes: 1