Debian /etc/hosts 有异常条目

Debian /etc/hosts 有异常条目

我从 Ubuntu 切换到 Debian

在 debian 中,/etc/hosts新安装后的文件是(在云服务器上):

127.0.1.1   static.246.62.63.178.clients.your-server.de static

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

什么是static.246.62.63.178.clients.your-server.de

似乎IP地址保留供将来使用

我要把它留在原处而不是更换它吗?例如,这样可以吗(如果我的服务器是 example.com):

127.0.0.1   localhost example.com

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

答案1

IP 地址作为名称通常会反向读取(很像 DNSPTR条目),因此名称应对应于 178.63.62.246,而不是 246.62.63.178。

在本例中,建议使用 Hetzner 的服务器。

您可以删除该条目,但如果这就是机器的名称(即所谓的名称),则最好保留某种类型的条目。例如

127.0.0.1      localhost loopback
178.63.62.246  my.preferred.hostname.example.com
178.63.62.246  static.246.62.63.178.clients.your-server.de

答案2

我认为@roaima的答案是正确的,但是Debian 有更多信息如果你有兴趣的话。特别是关于 127.0.1.1 的使用:

对于具有永久 IP 地址的系统,此处应使用该永久 IP 地址而不是 127.0.1.1。

有趣的是 Debian(显然)将此条目写入您的/etc/hosts文件中,以便字符串static中包含该单词。

相关内容