Não é possível obter um endereço IPv6 no Debian

3

Estou usando o Debian 7 com as atualizações mais recentes.

Eu tenho um bloco de endereços IPv6 do meu provedor e, de acordo com o provedor, o servidor DHCP está configurado para que eu obtenha um ip automaticamente (eu até perguntei a eles). Mas não funciona. Eu recebo um IPv4 automaticamente, então isso funciona bem. Depois de algum googling etc. descobri que o arquivo / etc / network / interfaces deveria ser responsável. Esta foi a posição inicial:

# 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

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp

E isso é ifconfig -a na posição inicial (o endereço IPv4 é alterado porque eu não sinto como descarregar meu ipv4 real, o IPv6 está intocado):

sudo ifconfig -a
[sudo] password for **:
eth0      Link encap:Ethernet  HWaddr <**>
          inet addr:188.105.484.221  Bcast:188.105.484.255  Mask:255.255.255.0
          inet6 addr: fe80::5054:ff:fe8c:3b20/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3290 errors:0 dropped:0 overruns:0 frame:0
          TX packets:304 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:407068 (397.5 KiB)  TX bytes:36628 (35.7 KiB)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:8 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1104 (1.0 KiB)  TX bytes:1104 (1.0 KiB)

Um IPv6 link-local, que também não é o que o servidor DHCP quer me dar, então não é bom. Então eu mudei o / etc / network / interfaces:

 cat /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

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
iface eth0 inet6 dhcp

E então eu corri minhas regras de firewall porque li que o firewall também pode ser chato. Então:

ifdown eth0 && ifup eth0
Internet Systems Consortium DHCP Client 4.2.2
Copyright 2004-2011 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/56:54:00:7b:3b:20
Sending on   LPF/eth0/56:54:00:7b:3b:20
Sending on   Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
DHCPREQUEST on eth0 to 255.255.255.255 port 67
DHCPOFFER from 188.105.484.254
DHCPACK from 188.105.484.254
bound to 188.105.484.221 -- renewal in 38715 seconds.

E então ele apenas trava e espera. Obtém o IPv4, então parece querer começar a procurar o ipv6, mas isso não acontece ou algo assim. ifconfig -a parece o mesmo de antes. O que estou fazendo de errado? Como devo obter um endereço ipv6?

---- EDITAR ----

Eu consegui trabalhar usando ip estático: / etc / network / interfaces (Novamente, o endereço ipv6 não é o que eu tenho)

# 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

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
#iface eth0 inet6 auto
#       accept_ra 1
#iface eth0 inet6 dhcp
#       accept_ra 1
iface eth0 inet6 static
        address 2a01:9b8:aaf:1dg::1
        gateway 2a01:9b8:aaf::1
        netmask 48
    
por Cheiron 10.08.2013 / 12:57

1 resposta

1

Isso depende se o seu provedor está usando DHCPv6 sem estado ou DHCPv6 com estado.

No DHCPv6 sem estado, seus endereços IP são realmente configurados via SLAAC, e o servidor DHCPv6 fornece apenas os endereços dos servidores DNS, os endereços dos servidores NTP, etc.

No Debian 7, este /etc/network/interfaces pode ser usada para o SLAAC ou para o DHCPv6 sem estado:

iface eth0 inet6 auto

No DHCPv6 com monitoração de estado, o servidor DHCPv6 também fornece a atribuição de endereços IPv6; O SLAAC não é usado. Isso está configurado com:

iface eth0 inet6 dhcp
    
por 10.08.2013 / 15:38