I got this URL today in a piece of junk e-mail:
Strangely, it worked! This is not an IP address (no periods) and it is not the standard DNS type. What is this? A third way of recognizing a site?
I got this URL today in a piece of junk e-mail:
Strangely, it worked! This is not an IP address (no periods) and it is not the standard DNS type. What is this? A third way of recognizing a site?
It is an IP address, just in a different form. IP addresses are actually stored in hexadecimal. Convert your number to hex and you get the internal IP address, D8CD469D. The digits A through F are used for the base ten number 10-15.
Now put the periods in between each pair of digits: D8.CD.46.9D.
Now convert each pair of digts to base ten and you get 216.205.70.157, the form of the IP address you usually see. This form is used so as not to confuse people unfamiliar with hexadecimal, to make it easier to remember, and to help tech types convert it back to hex easily when necessary.
That is wierd.
It resolves to 216.205.70.157 and I get a host name of 157-216.205.70.interliant.com
Can’t think of a real-world value for it, but still neat. It looks like Win 98 dos utils like ping accept the decimal versions as well.
It turns out, you can enter numbers in standard C hex or oct format as well.
For the site from the OP, you can also enter:
0xd8cd469d (hex)
033063243235 (oct)
Wow. Very interesting information. Thank you.
Now does anyone have any idea why they would take the trouble to give the URL this way?
And why bother to code a web browser to accept it?