最近忍不住剁手买了国人ONEMAN商家VMOCEAN 2刀/年的NAT-VPS,

最蛋疼的是购买来后竟然没有开启ssh,

更操蛋的是他家用netboot.xyz安装Debian、Centos系统每次都失败,

按照他家自带的手动安装Alpine教程安装完成后,

又发现竟然自身没有配置IPV6,WTF!!!

对我这种只会Debian小白来说简直是要人命,

折腾了一下午,终于添加了IPV6,

下面把方法记录下来,

万一以后再用到呢!

首先开启IPV6支持

modprobe ipv6
echo "ipv6" >> /etc/modules

编辑网卡配置,添加IPV6地址

编辑interfaces vi /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0

iface eth0 inet static
        address 10.3.1.24
        netmask 255.255.252.0
        gateway 10.3.1.1

iface eth0 inet6 static
        address 2001:41d0:2:c53f::519
        netmask 64
        gateway 2001:41d0:0002:c53f:0000:0000:0000:0002

最后重启网络服务

service networking restart

Okay,IPV6添加成功!

然后装一个探针,

吃灰去吧!

最后修改:2023 年 03 月 18 日
如果觉得我的文章对你有用,请随意赞赏