Hosts

Debian /etc/hosts 有異常條目

  • April 20, 2022

我從 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

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

引用自:https://unix.stackexchange.com/questions/699762