A execução de "hostname -i" não mostra mais todos os meus endereços

1

Eu mudei meu hostname no Ubuntu 16.04.1.

Agora, executando hostname -i , eliminamos a maioria dos meus endereços, exceto um.

Em vez disso, a saída é:

127.0.1.1

Costumava ser: ipv6_address%eth0 ipv6_address%eth1 ipv6_address%2 ipv4_address ipv4_address ipv4_address ipv4_address .

/ etc / hostname: 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

Existe alguma maneira de recuperar meus endereços?

    
por rany 31.08.2016 / 14:37

2 respostas

2

Isso ocorre porque, em /etc/hosts , você encontra a entrada 127.0.1.1 YourLinuxBoxName .

Esta entrada particular do localhost (cada endereço em 127/8 é localhost ) é usada pelo DNSmasq. É seguro ignorar.

    
por jawtheshark 31.08.2016 / 15:09
1

Você deve alterar a próxima linha:

127.0.1.1 rany-01 rany-01

em /etc/hosts . Deve ser:

127.0.1.1 ubuntu-rany-01

Ou você pode alterar o conteúdo de /etc/hostname : rany-01 em vez de ubuntu-rany-01 .

    
por pa4080 31.08.2016 / 15:05