Conexão IPv6 caindo no Debian 7

1

EDITAR : Eu tentei algo diferente com base na pesquisa. Este é o meu /etc/network/interfaces :

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This line makes sure the interface will be brought up during boot
auto eth0
allow-hotplug eth0

# The primary network interface
iface eth0 inet static
    address 85.17.141.27
    netmask 255.255.255.0
    gateway 85.17.141.254
    # dns-* options are implemented by the resolvconf package, if installed
    dns-nameservers 85.17.150.123 85.17.96.69 85.17.150.123 62.212.64.122
    dns-search localdomain
    # up commands
    up ip addr add 85.17.141.33/24 dev eth0
    up ip -6 addr add 2001:1af8:4100:a00e:4::1/64 dev eth0
    up ip -6 ro add default via 2001:1af8:4100:a00e::1 dev eth0

Em seguida, ip addr show eth0 outputs:

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether d4:ae:52:c5:d2:1b brd ff:ff:ff:ff:ff:ff
inet 85.17.141.27/24 brd 85.17.141.255 scope global eth0
inet 85.17.141.33/24 scope global secondary eth0
inet6 2001:1af8:4100:a00e:d6ae:52ff:fec5:d21b/64 scope global dynamic 
   valid_lft 2591870sec preferred_lft 604670sec
inet6 2001:1af8:4100:a00e:4::1/64 scope global 
   valid_lft forever preferred_lft forever
inet6 fe80::d6ae:52ff:fec5:d21b/64 scope link 
   valid_lft forever preferred_lft forever

mais ip -6 ro de saídas:

2001:1af8:4100:a00e::/64 dev eth0  proto kernel  metric 256 
fe80::/64 dev eth0  proto kernel  metric 256 
default via 2001:1af8:4100:a00e::1 dev eth0  metric 1024 
default via fe80::2d0:ff:fe9e:1800 dev eth0  proto kernel  metric 1024  expires 1627sec
default via fe80::2d0:2ff:fe33:3c00 dev eth0  proto kernel  metric 1024  expires 1627sec

Eventualmente, as duas rotas padrão do kernel proto desaparecem da saída. Minha conexão IPv6 ainda caiu em algum momento durante a noite. Novamente, simplesmente executando sudo service networking stop && sudo service networking start fez tudo funcionar novamente. Essas duas rotas fe80 reapareceram também, não surpreendendo. Alguém tem alguma ideia?

aparte : em nenhum momento qualquer conexão IPv4 teve problemas.

    
por Jonny Barnes 17.06.2014 / 22:00

2 respostas

1

A dinâmica global do escopo é proveniente da autoconfiguração da interface . A primeira metade é o mesmo que o seu prefixo IPv6, e a segunda metade é EUI-64 (derivada de 'FF: FE' e seu endereço MAC ethernet, a menos que você esteja usando Extensões de privacidade IPv6 )

Se você não quiser, pode desativá-los fazendo sysctl net.ipv6.conf.eth.autoconf = 0 ANTES trazendo sua interface para cima.

    
por 27.10.2014 / 00:45
1

A maneira correta de configurar o IPv6 no arquivo /etc/network/interfaces do Debian é:

iface eth0 inet6 static
        address 2001:1af8:4100:a00e:4::1
        netmask 64
        gateway 2001:1af8:4100:a00e::1

Você não deve ter nenhuma dessas instruções up extras para configurar seu endereço IPv6.

    
por 27.10.2014 / 01:06

Tags