Xip.io - a magic domain name that provides wildcard DNS for any IP address
1–10 of 128 posts
Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#2Of course reverse dns doesn't work :-) I suppose it kinda sorta could if you tracked where a request came from and what IP you sent it and if you got a reverse lookup you could undo that, but still it is clever!
Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#3Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#4Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#5Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#6Hmm... Why wouldn't I just type the IP in?
With this you could serve as many different sites as you want based on the first part of the domain name.
Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#7I hope people trust 37signals.
Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#8Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#9Re: Xip.io - a magic domain name that provides wildcard DNS for any IP address
#10Hmm... Why wouldn't I just type the IP in?
Because then you can only serve one site from that address. With this you could serve as many different sites as you want based on the first part of the domain name.
By the way, a neat trick is to assign an alias to your network interface in order to avoid the trouble of DHCP giving you a different IP address each time you connect. For example, on Mac OS X:
$ sudo ifconfig en1 alias 10.99.99.99 netmask 255.0.0.0
This address will only be reachable from hosts that have a route to it, which can be achieved for example by also giving them an alias on the same subnet. Still, comes in handy at times.(Obviously you want to be sure you're using a vacant address.)
(And of course, when you have control over the DHCP server there are more elegant ways of achieving this, such as binding your MAC to a static IP address.)
Edited for clarity.