The hosts file is a special file on your workstation computer that will store IP and name information. This file is checked before DNS, so if you place an entry in this file it will supersede anything set in DNS. This feature is very useful in testing websites as it will allow you to control which IP your local computer will visit regardless of what is set in DNS.
Hosts file syntax
The format of the hosts file is very simple. Each line has an IP address and a hostname separated by one or more spaces. By default, hosts files typically contain entries for “localhost” as well as some comment text describing the file and its use. It is best to not change any of these lines.
Example:
1.2.3.4 example.com
1.2.3.4 www.example.com
Editing your hosts file
Windows
- From the Start Menu, search for “Notepad” (Win 8, 10) or navigate to: “All Programs -> Accessories -> Notepad” (Win XP, Vista, 7).
- Right click on Notepad and select “Run As Administrator”.
- In Notepad, click “Open” and select the file
C:/Windows/System32/Drivers/etc/hosts
. - Edit file and save.
Linux
- Open a terminal window.
- Edit the file
/etc/hosts
as root with a text editor. Example:sudo nano /etc/hosts
Testing your settings
- Open a command prompt.
- Use the command:
ping -c2 example.com
- The ping results will show the IP address and confirm that it is responding.
Want to contribute?
You could earn up to $300 by adding new articles
Suggest an update
Request an article