# 前言

CoreELEC 启用 IPV6
CoreELEC 默认是不开启 IPV6 的,需要手动开启

# 操作步骤

新建并且编辑 /etc/sysctl.d/ipv6.conf 文件

vi /etc/sysctl.d/ipv6.conf

编辑上述文件,写入以下内容:

net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.eth0.disable_ipv6 = 0

保存退出,执行以下命令

systemctl restart systemd-sysctl

# 增加开机启动

vi /storage/.config/autostart.sh

追加内容

/usr/bin/systemctl restart systemd-sysctl
更新于 阅读次数