RackNerd 洛杉矶 (DC 2) 服务器支持免费申请 100 个 IPv6 地址。申请后需要手动配置网络才能正常使用。以下是详细的配置步骤
nano
打开以下文件/etc/sysctl.conf
net.ipv6.conf.all.autoconf = 0
net.ipv6.conf.all.accept_ra = 0
net.ipv6.conf.eth0.autoconf = 0
net.ipv6.conf.eth0.accept_ra = 0
部分操作系统(例如 Debian 12 )需要注释掉以下内容
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
修改为
# net.ipv6.conf.all.disable_ipv6 = 1
# net.ipv6.conf.default.disable_ipv6 = 1
# net.ipv6.conf.lo.disable_ipv6 = 1
sysctl -p
执行以下命令重启网络
systemctl restart networking
如果执行后出现报错,请查看解决方法
如果没有异常,重启服务器
reboot
登陆 VM 面板
点击重置网络选项
点击 Yes
按纽,稍等片刻
弹出该页面后,点击 Ok
按纽即可
执行以下命令
curl ip.me -6
如果返回 IPv6 地址,则配置成功
1
VchentozV 1 天前 via iPhone
他们家的很坑
|