vote up 1 vote down star

Is anyone aware of a public wildcard domain name that resolves to IP address 127.0.0.1. For example if I wanted to test a URL locally such as mywebsite.localhost.com or example.localhost.com but I don't have control of DNS settings (hosts file or whatever) then I would use this public DNS to resolve to 127.0.0.1. It needs to be wildcarded so that no matter whatever comes before localhost.com it still resolves to 127.0.0.1.

flag

8 Answers

vote up 1 vote down

In windows there is a hosts file that allows you to specify an alias and an IP address it refers to, you could place your alias in there and point it to 127.0.0.1 You can google plenty of advice on it once you know the name or add an entry on the file such as:

127.0.0.1 mywebsitealias.com
link|flag
That doesn't really help because I don't have access to the hosts file on the device I'm using. I also don't have the ability to change the DNS. Therefore I'm looking for a public wildcard domain name that resolves to 127.0.0.1 – Rahul Oct 13 at 21:35
It's specifically reserved for the local network loopback, checking ripe / arin / afrinic / apnic and lacnic they all consider it as loopback / reserved. It could be that what you are after is not possible without having some form of access to intercept the name resolution request. – Andrew Oct 13 at 21:53
It should be possible. I could just purchase a domain name like usefullocalhost.com and setup a wildcard record on the nameserver to respond to *.usefullocalhost.com with 127.0.0.1. Before I went off and did that I was wondering if anyone has already done this. – Rahul Oct 14 at 20:29
Understand what you are looking at doing, will be interested to know if they let you set up the forwarding address to the loopback or whether they block such a setting. – Andrew Oct 14 at 21:54
vote up 1 vote down

Why not using the literal IP address in the URL?

  • http://127.0.0.1/ (old IPv4)
  • http://[::1]/ (new IPv6)
link|flag
My particular problem is I'm using host headers in IIS. In addition I'm working on portal software which displays different content based on the URL requested. – Rahul Oct 14 at 17:07
vote up 1 vote down

If nothing else, you could just register a domain for yourself and set it up so that's how it behaves.

link|flag
vote up 0 vote down

If you are using Windows DNS, you can create a new zone, then you DnsCmd to add A records for @ and *.

dnscmd /RecordAdd local * 3600 A 127.0.0.1
dnscmd /RecordAdd local @ 3600 A 127.0.0.1
link|flag
vote up 0 vote down

Hi,

This domain resolves to 127.0.0.1:

www.mouse-potato.com

link|flag
vote up 0 vote down

somesite.com is the first one I knew about, however I found a whole bunch here

http://www.websiteoutlook.com/www.somesite.com

Check the 20 other sites point to 127.0.0.1. I have no idea how long these sites will stay pointing to 127.0.0.1.

link|flag
vote up 0 vote down

You can go to http://afraid.org and register one.. You can get free domains(well subdomains, but you have complete control over A and NS and such records) and point one at 127.0.0.1. They support wild-cards

link|flag
vote up 0 vote down

Your hosts file in C:\WINDOWS\system32\drivers\etc ought to be able to do this, just add one single line like this:

127.0.0.1 www.mydomain.com

Additionally, use a server like apache or a program with it like wamp, and just go to http://localhost

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.