Modifying your hosts file enables you to override the DNS for a domain, on that particular machine. This is useful when you want to test your site without a test link.
To modify the hosts file, you add two entries to the file that contain the IP address that you want the site to resolve to and the address. For example:
The sections in this article provide instructions for locating and editing the hosts file on the following operating systems:
- Mac OS X 10.0 through 10.1.5
- Mac OS X 10.6 through 10.12
After you add the domain information and save the file, your system begins resolving to the specified IP address. After testing is finished, remove these entries.
Mac OS X 10.0 through 10.1.5
- Open /Applications/Utilities/NetInfo Manager.
- To allow editing of the NetInfo database, click the padlock in the lower-left corner of the window.
- Enter your domain user password and click OK.
- In the second column of the browser view, select the node named machines.The third column contains entries for -DHCP-, broadcasthost, and localhost.
- In the third column, select localhost.
- From the Edit menu, select Duplicate. (The quickest way to create a new entry is to duplicate an existing one.) A confirmation alert appears.
- Click Duplicate. A new entry called localhost copy appears, and its properties are shown below the browser view.
- Double-click the value of the ip_address property and enter the IP address of the other computer.
- Double-click the value of the name property and enter the hostname you want for the other computer.
- Click the serves property and select Delete from the Edit menu.
- From the File menu, select Save. A confirmation alert appears.
- Click Update this copy.
- Repeat steps 6 through 12 for each additional host entry that you want to add.
- From the NetInfo Manager menu, select Quit. You do not need to restart the computer.
Mac OS X 10.6 through 10.12
- Open Applications > Utilities > Terminal.
- Open the hosts file by typing the following line in the terminal window:
sudo nano /private/etc/hosts
3. Type your domain user password when prompted.
4. Edit the hosts file.
The file contains some comments (lines starting with the # symbol), and some default hostname mappings (for example, 127.0.0.1 – local host). Add your new mappings after the default mappings.
5. Save the hosts file by pressing Control+x and answering y.
6. Make your changes take effect by flushing the DNS cache with the following command:
dscacheutil -flushcache