运行“hostname -i”不再显示我的所有地址

运行“hostname -i”不再显示我的所有地址

我在 Ubuntu 16.04.1 上更改了我的主机名。

现在运行hostname -i可以删除除一个之外的大部分地址。

相反,它的输出是:

127.0.1.1

它曾经是:ipv6_address%eth0 ipv6_address%eth1 ipv6_address%2 ipv4_address ipv4_address ipv4_address ipv4_address

/etc/主机名:ubuntu-rany-01

在 /etc/hosts 中:

# Your system has configured 'manage_etc_hosts' as True.
# As a result, if you wish for changes to this file to persist
# then you will need to either
# a.) make changes to the master file in /etc/cloud/templates/hosts.tmpl
# b.) change or remove the value of 'manage_etc_hosts' in
#     /etc/cloud/cloud.cfg or cloud-config from user-data
#
127.0.1.1 rany-01 rany-01
127.0.0.1 localhost

# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

有什么办法可以找回我的地址吗?

答案1

这是因为/etc/hosts您在其中找到了条目127.0.1.1 YourLinuxBoxName

此特定 localhost 条目(中的每个地址127/8都是localhost)由 DNSmasq 使用。可以安全地忽略它。

答案2

您应该更改下一行:

127.0.1.1 rany-01 rany-01

在 中/etc/hosts。它必须是:

127.0.1.1 ubuntu-rany-01

或者您可以将 的内容更改为/etc/hostname:rany-01而不是ubuntu-rany-01

相关内容