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....
|
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....
| ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
you can add a line like
to /etc/hosts if you want to bind a hostname to an IP. In most default configurations this file is consulted first. | |||
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
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. | |||
feedback
|
|
You should already be able to access that via http://localhost/, which is the standard name for 'this machine'. | |||
|
feedback
|
man hosts– balpha♦ Jan 8 '10 at 6:11