All,

How is that we can convert an IP to a domain name address on linux machine.

Suppose i always access my Pc with http://127.0.0.1 from the browser

I want to change this to my.com

Thanks....

link|improve this question

29% accept rate
3  
This belongs on superuser. But take a look at man hosts – balpha Jan 8 '10 at 6:11
feedback

migrated from stackoverflow.com Jan 8 '10 at 9:35

This question came from our site for professional and enthusiast programmers.

3 Answers

you can add a line like

127.0.0.1 my.host whatever.com

to /etc/hosts if you want to bind a hostname to an IP. In most default configurations this file is consulted first.

link|improve this answer
Thanks. This is what i was looking for....... – Hulk Jan 8 '10 at 6:38
feedback

I'n not sure exactly what you're asking, but if you just want to know how to look up a domain name associated with an IP address, you can use dig -x to do a reverse DNS lookup:

$ dig +short -x 69.59.196.211
stackoverflow.com.

Note that this won't always work, because there may be multiple domain names pointing at a single IP address, and it's not always the case that every IP address has a reverse DNS mapping.

link|improve this answer
Thanks................ – Hulk Jan 8 '10 at 6:18
feedback

You should already be able to access that via http://localhost/, which is the standard name for 'this machine'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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