web-dev-qa-db-ja.com

Ubuntu 16.04 VPSでIPv6を有効にする

私のシステム:Ubuntu 16.04サーバー、Nginx 1.10、PHP 7. VPS専用のIPv6アドレスがあります。 IPv6を設定するための適切なリンクまたは情報を書いてください。

IPv4の場合:

address 188.225.32.215
netmask 255.255.255.255
gateway 188.225.32.1

IPv6の場合:

address 2a03:6f00:4::bce1:224d
netmask 64
gateway 2a03:6f00:4::1

ifconfig:

--------------------------------
eth0      Link encap:Ethernet  HWaddr 8a:cf:f5:f9:78:c7
          inet addr:188.275.37.215  Bcast:188.275.37.255  Mask:255.255.255.0
          inet6 addr: fe80::88cf:f5ff:fef9:78c7/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:37797386 errors:0 dropped:0 overruns:0 frame:0
          TX packets:54146 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:1856762239 (1.8 GB)  TX bytes:47193912 (47.1 MB)

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:65536  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1
          RX bytes:196 (196.0 B)  TX bytes:196 (196.0 B)
--------------------------------

/etc/network/interfaces

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp
--------------------------------

/etc/network/interfaces.d-空。

2
Sylon

提供情報(読み取り可能な形式):

IPv4:
(保留中または提供なし)

IPv6:
住所:2a03:6f00:4::bce1:224d
ネットワークマスク:/64
ゲートウェイ:2a03:6f00:4::1

これらの仮定は、OP:によって提供されないため、回答者によって追加されました。
DNSネームサーバー(Google DNS、IPv4):8.8.8.8, 8.8.4.4
DNSネームサーバー(Google DNS、IPv6):2001:4860:4860::8888, 2001:4860:4860::8844

これを、必ずしも同じプロバイダーからではなく、他のVPSの1つから取得して、ガイドとして/etc/network/interfacesを使用します。 これらの設定を変更した後、VPSを再起動する必要があります。

ガイドとしてDebian wikiのこのページ(ほとんどの場合Ubuntuで機能します) とVPSプロバイダーからの情報を使用して、このようなものが/etc/network/interfacesにあると期待しています:

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp
iface eth0 inet6 static
    address 2a03:6f00:4::bce1:224d
    netmask 64
    gateway 2a03:6f00:4::1
    dns-nameservers 2001:4860:4860::8888 2001:4860:4860::8844

リブートすると、IPv6がシステムにマップされ、使用可能になります。 ping6 2001:4860:4860::8888を実行してこれを試してテストし、v6の 'netにアクセスできることを確認してください。 pingを返し、エラーが発生しない場合は、すぐに使用できます。それ以外の場合は、複雑なデバッグを行う必要があります。

8
Thomas Ward