Sekhar
Sekhar

Reputation: 5787

Unable to Access my own website from the Server console

I am having a weird issue hosting my web application. I am able to access the website from any other computer (from outside the network and from within the network) but unable to access it from the Server!! (using the browser )

The details are as follows

As an extra troubleshooting, I did

telnet localhost 443 - works

telnet publicip 443 - doesn't work

Upvotes: 0

Views: 882

Answers (3)

Sekhar
Sekhar

Reputation: 5787

The problem was with our DNS settings. We recently changed from Public IP to Private IP and the DNS reply was somewhat messed up when we tried opening it from the Server!!.

Thanks for your answers!

Upvotes: 0

Michael
Michael

Reputation: 1622

Also, there's always the issue of server loopback, wherein a server cannot resolve a named reference to itself from within the server. Most commonly occurs on intranets, or on SharePoint sites, I've noticed.

Upvotes: 0

gorlok
gorlok

Reputation: 1155

Maybe public IP isn't routeable from your server.

Verify what happens when you try to access publicip:

tracert publicip

Check your network settings:

ipconfig /all

Check your socket listenings:

netstat -a -n

Local firewall rules?

Upvotes: 1

Related Questions