Mobile app version of vmapp.org
Login or Join
Vandalay111

: How to map URL to IP? I'm completely ignorant when it comes to hosting. Suppose I have a web application up and running on IIS 6.0 locally, and then I publish it (somehow?) I assume the

@Vandalay111

Posted in: #Dns #Iis #Iis6 #WebHosting

I'm completely ignorant when it comes to hosting.

Suppose I have a web application up and running on IIS 6.0 locally, and then I publish it (somehow?)

I assume the site will be accessible from XXX.XXX.XXX.X/, but what if I want a domain name to point at it? Can I do it on my own, dedicated server, or have I absolutely must go to a third party?

I believe I need a DNS, but can I set one up for free somehow?

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

3 Comments

Sorted by latest first Latest Oldest Best

 

@Hamm4606531

I do exactly what you're trying to do at home.
www.dyndns.com/services/dns/dyndns/
Sign up for Free DNS Service. Pick a free domain/hostname (ie helloworld.gotdns.org). Finally install the DNS client tool on your server. This will make sure your dynamic IP address is constantly updated on DynDNS's website so when you hit helloworld.gotdns.org it will always point to your box.

Now you can have your friends connect to your game server simply by going to helloworld.gotdns.org
Hope that made sense. :)

Michael

10% popularity Vote Up Vote Down


 

@Kevin317

You need to use a service like Zoneedit which not only provides DNS services but can handle dynamic IP addresses like you probably have if you're hosting your own server locally.

10% popularity Vote Up Vote Down


 

@Hamaas447

First you must register your domainname with a suitable registrar.

As part of this the IP addresses of 2 computers that will serve as "DNS servers" are required. Many registrars provide these servers as part of the service.

Next the "DNS zone files" on those "DNS Servers" need to be updated to include a reference that basically says "www.mydomain.com is at IP address 123.321.123.321"
Again most registrars provide an easy way to do this.

The computer with IP address 123.321.123.321 must be on the internet and running a web server that can respond to requests.

Then when someone types in mydomain.com, their local DNS system looks up the zone file (or a locally cached copy their ISP has) and this tells them the 123.321.123.321 IP address. The web browser then sends a "give me this web page" message directly to that IP address. Which then sends them back the web page.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme