文章

DD Linux后ipv6丢失

dd后vps丢失ipv6,如何找回?

一、前言

我们在使用服务商提供的VPS时,为了防止商家系统安装有自己的服务,或是因为无法安装特定软件等原因,都会想到去 DD 个纯净系统。但是DD的负面作用,会造成商家提供的IPV6“消失”,检测得到,但却无法Ping通使用。虽然说IPV6几乎很少去用到,但是不用和用不成是两个概念。本教程以Debian为例,讲解找回办法。

二、查询商家系统IPV6信息

查看cat /etc/network/interfaces 文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 21.221.222.217
netmask 255.255.255.111
gateway 39.339.399.193

iface eth0 inet6 static
accept_ra 0
address 2c07:8ac1:0070:1015:0030:1000:9a9a:ab99
netmask 64
gateway 2c07:8ac1:0070:1015::1

将系统的 IPV6 信息记录下来,也就是iface eth0 inet6 static(根据你的系统信息,中间eth0部分会有所不同)下面的addressnetmaskgateway这些内容。

三、DD纯净系统

参考萌咖大佬的dd脚本:仓库

例如:dd debian10

1
wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/InstallNET.sh && chmod +x InstallNET.sh && ./InstallNET.sh -d 10 -v 64 -p "自定义root密码" -port "自定义ssh端口"

四、修改系统文件

查看cat /etc/network/interfaces 文件,你会发现文件中只有IPV4信息,而没有IPV6的配置信息。我们在这里就要补充上前面记录下来的IPV6信息。将以下信息填写到文件末尾:

1
2
3
4
5
iface xxxx inet6 static    (这里"xxxx"部分,跟当前文件里IPV4中"iface xxxx inet static"一致)
address 2c07:8ac1:0070:1015:0030:1000:9a9a:ab99       (前面记录的 IPV6 地址)
netmask 64
gateway 2c07:8ac1:0070:1015::1 (前面记录的 IPV6 网关)
dns-nameservers 2001:4860:4860::8888 2001:4860:4860::8844       (可以加入 Google DNS,也可以不加)

保存后,reboot 重启。IPV6就生效了。你也可以进行Ping测试进行检查。

至此找回工作大功告成!

本文由作者按照 CC BY 4.0 进行授权