hosts 文件位置详解
hosts 文件是一个非常重要的系统文件,它存储了计算机网络中节点信息,并将主机名映射到相应的 IP 地址,从而实现 DNS 的功能。hosts 文件的位置在不同的操作系统中并不相同,今天我们就来详细介绍 hosts 文件的位置和作用。
hosts 文件的作用
----------------
hosts 文件的主要作用是将一些常用的网址域名与其对应的 IP 地址建立一个关联"数据库"。当用户在浏览器中输入一个需要登录的网址时,系统会首先自动从 Hosts 文件中寻找对应的 IP 地址,一旦找到,系统会立即打开对应网页,如果没有找到,则系统再会将网址提交 DNS 域名解析服务器进行 IP 地址的解析。
hosts 文件的位置
-----------------
hosts 文件的存储位置在不同的操作系统中也并不相同。下面我们来看下 hosts 文件位置:
* 在 Windows 98 系统下该文件在 Windows 文件夹。
* 在 Windows 2000/XP/Vista/Seven 系统中位于 `%Systemroot%\System32\Drivers\Etc` 文件夹中,其中,`%Systemroot%` 指系统安装路径。例如,Windows XP 安装在 C:\WINDOWS,那么 Hosts 文件就位于 C:\WINDOWS\System32\Drivers\Etc 中。
hosts 文件的特点
-----------------
hosts 文件具有系统属性,系统默认是不显示此文件的。因此很多朋友虽然找到了相应的文件夹却看不到 hosts 文件。要显示系统文件,可以按照以下步骤进行操作:
1. 打开"我的电脑"。
2. 点击"工具"文件夹选项。
3. 在高级设置中取消勾选"隐藏受保护的系统文件"。
4. 确认后就完成了。这时,电脑中的所有系统文件都会显示出来,hosts 文件也不会例外。
hosts 文件的内容
-----------------
hosts 文件一般有如下面的基本内容:
```
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names.
# Each entry should be kept on an individual line.
# The IP address should be placed in the first column followed by
# the corresponding host name.
# The IP address and the host name should be separated by at least one space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a # symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# 127.0.0.1 localhost
```
hosts 文件是一个纯文本的文件,用普通的文本编辑软件如记事本等都能打开和编辑。
hosts 文件的编辑
-----------------
hosts 文件可以由计算机的用户来进行控制。用户可以根据需要编辑 hosts 文件,以便实现特定的 DNS 功能。
hosts 文件是一个非常重要的系统文件,了解它的位置和作用对于计算机网络的管理和维护非常重要。