Perda de rota IPv6 ou conectividade na interface ligada 16.04LTS

2

Boa tarde a todos. Executando o 16.04LTS em uma placa-mãe SuperMicro X7DBN. Eu tenho dois problemas possivelmente relacionados que descreverei separadamente.

Primeiro, parece que estou perdendo a conectividade IPv6 5 a 10 minutos após a inicialização. Abaixo está o conteúdo do meu arquivo / etc / network / interfaces

source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto bond0
iface bond0 inet static
        address 172.16.1.100
        gateway 172.16.1.1
        netmask 255.255.255.0
        dns-search home.example.com
        dns-nameservers 127.0.0.1
        bond-mode 4
        bond-miimon 100
        bond-lacp-rate 1
        bond-slaves enp4s0f0 enp4s0f1

iface bond0 inet6 static
        address 2605:aaaa:bbbb:cccc::a
        netmask 64
        gateway fe80::1
        dns-search home.example.com
        dns-nameservers ::1

Eu posso pingar o gateway:

user@monstro:/etc/network/interfaces.d$ ping6 fe80::1 -I bond0
PING fe80::1(fe80::1) from fe80::230:48ff:fec6:fa2 bond0: 56 data bytes
64 bytes from fe80::1: icmp_seq=1 ttl=64 time=0.507 ms
64 bytes from fe80::1: icmp_seq=2 ttl=64 time=0.459 ms

Eu posso pingar o endereço real do gateway:

user@monstro:/etc/network/interfaces.d$ ping6 2605:aaaa:bbbb:cccc::1
PING 2605:aaaa:bbbb:cccc::1(2605:aaaa:bbbb:cccc::1) 56 data bytes
64 bytes from 2605:aaaa:bbbb:cccc::1: icmp_seq=1 ttl=64 time=105 ms
64 bytes from 2605:aaaa:bbbb:cccc::1: icmp_seq=2 ttl=64 time=0.531 ms

Não consigo pingar nada fora do gateway. Informações de roteamento:

user@monstro:/etc/network/interfaces.d$ route -6
Kernel IPv6 routing table
Destination                    Next Hop                   Flag Met Ref Use If
2605:aaaa:bbbb:cccc::/64       ::                         UA   256 2    38 bond0
fe80::/64                      ::                         U    256 2     3 bond0
::/0                           ::                         !n   -1  1   833 lo
::1/128                        ::                         Un   0   8    48 lo
2605:aaaa:bbbb:cccc::a/128     ::                         Un   0   2   398 lo
fe80::230:48ff:fec6:fa2/128    ::                         Un   0   2    88 lo
ff00::/8                       ::                         U    256 7    62 bond0
::/0                           ::                         !n   -1  1   833 lo

Eu mencionei dois problemas. O segundo é que tenho que reinicializar toda vez que faço alterações no arquivo de interfaces. Não consigo reiniciar a rede para reiniciar a rede. A interface bond0 não responderá. Aqui está o que parece:

user@monstro:/etc/network/interfaces.d$ sudo systemctl restart networking
Job for networking.service failed because the control process exited with error code. See "systemctl status networking.service" and "journalctl -xe" for details.
user@monstro:/etc/network/interfaces.d$ journalctl -xe
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit networking.service has begun starting up.
Jun 21 13:37:23 monstro ifup[4164]: sh: echo: I/O error
Jun 21 13:37:23 monstro kernel: bond0: Setting MII monitoring interval to 100
Jun 21 13:37:23 monstro kernel: bond0: option mode: unable to set because the bo
Jun 21 13:37:23 monstro ifup[4164]: sh: echo: I/O error
Jun 21 13:37:23 monstro ifup[4164]: Waiting for a slave to join bond0 (will time
Jun 21 13:37:23 monstro kernel: bond0: option lacp_rate: unable to set because t
Jun 21 13:37:23 monstro ifup[4164]: RTNETLINK answers: File exists
Jun 21 13:37:23 monstro ifup[4164]: Failed to bring up bond0.
Jun 21 13:37:23 monstro systemd[1]: networking.service: Main process exited, cod
Jun 21 13:37:23 monstro systemd[1]: Failed to start Raise network interfaces.
-- Subject: Unit networking.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit networking.service has failed.
--
-- The result is failed.
Jun 21 13:37:23 monstro sudo[4156]: pam_unix(sudo:session): session closed for u
Jun 21 13:37:23 monstro systemd[1]: networking.service: Unit entered failed stat
Jun 21 13:37:23 monstro systemd[1]: networking.service: Failed with result 'exit
lines 2550-2572/2572 (END)

Não sei se essas duas questões estão relacionadas ou se preciso lidar com elas separadamente. Alguém? Obrigado!

    
por Phil 21.06.2016 / 22:41

1 resposta

0

Bem, acontece que foi simples. Eu tive que adicionar o seguinte ao /etc/sysctl.conf:

net.ipv6.conf.all.accept_ra = 1

Isso não era necessário nas versões anteriores que eu executei, mas agora é. Pelo menos, para minha configuração particular, é ...

    
por Phil 29.06.2016 / 20:05