私は最新のアップデートでDebian7を使用しています。
プロバイダーからIPv6アドレスのブロックがあり、プロバイダーによると、DHCPサーバーは自動的にIPを取得するように設定されています(私はそれらに尋ねました)。しかし、それは機能しません。 IPv4を自動的に取得するので、問題なく動作します。グーグルなどを行った後、ファイル/ 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
そして、これは開始位置のifconfig -aです(実際のipv4をダンプしたくないため、IPv4アドレスが変更されています。IPv6は変更されていません):
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)
リンクローカルIpv6。これもDHCPサーバーが提供したいものではないので、ダメです。だから私は/ 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
そして、ファイアウォールも煩わしい可能性があることを読んだので、ファイアウォールルールをフラッシュしました。それで:
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.
そして、それはただハングして待機します。 IPv4を取得すると、ipv6を探し始めたいようですが、そうではありません。 ifconfig-aは以前と同じように見えます。私は何が間違っているのですか? ipv6アドレスを取得するにはどうすればよいですか?
----編集----
Static ip:/ etc/network/interfacesを使用して動作させました(繰り返しますが、ipv6アドレスは実際のアドレスではありません)
# 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
これは、プロバイダーがステートレスDHCPv6を使用しているかステートフルDHCPv6を使用しているかによって異なります。
ステートレスDHCPv6では、IPアドレスは実際にはSLAACを介して構成され、DHCPv6サーバーはDNSサーバーアドレス、NTPサーバーアドレスなど)のみを提供します。
Debian 7では、これ /etc/network/interfaces
構成は、SLAACまたはステートレスDHCPv6のいずれかに使用できます。
iface eth0 inet6 auto
ステートフルDHCPv6では、DHCPv6サーバーはIPv6アドレス割り当ても提供します。 SLAACは使用されません。これは次のように構成されます。
iface eth0 inet6 dhcp