Linux /etc/hosts

Posted RushoutAsia

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux /etc/hosts相关的知识,希望对你有一定的参考价值。

用途:

关联主机名和IP地址

在机器启动时,在DNS正常工作前,需要知道一些主机名和IP地址的映射关系,这个映射关系就保存在/etc/hosts文件中,在DNS不能正常工作是,系统中所有的网络程序将查看该文件以决定IP地址对应的主机名。

格式:

每行一个IP地址

IP_address canonical_hostname [aliases...]

注释:

从 #开始,到一行的结束。

示例一:

127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6

示例二:

# The following lines are desirable for IPv4 capable hosts
       127.0.0.1       localhost

       # 127.0.1.1 is often used for the FQDN of the machine
       127.0.1.1       thishost.mydomain.org  thishost
       192.168.1.10    foo.mydomain.org       foo
       192.168.1.13    bar.mydomain.org       bar
       146.82.138.7    master.debian.org      master
       209.237.226.90  www.opensource.org

       # The following lines are desirable for IPv6 capable hosts
       ::1             localhost ip6-localhost ip6-loopback
       ff02::1         ip6-allnodes
       ff02::2         ip6-allrouters

 

以上是关于Linux /etc/hosts的主要内容,如果未能解决你的问题,请参考以下文章

Linux /etc/hosts文件作用(转)

Linux操作系统下/etc/hosts文件配置方法

2020/4/19-linux中/etc/hosts

Linux下的/etc/hosts文件

Linux本地解析文件/etc/hosts说明原创

linux中/etc/hosts文件配置