安装前记录好ip地址 子网掩码 网关

一键DD系统

wget --no-check-certificate -O NewReinstall.sh https://cdn.jsdelivr.net/gh/fcurrk/reinstall@master/NewReinstall.sh && chmod a+x NewReinstall.sh && bash NewReinstall.sh

选择99自定义url下载

输入想要DD的OpenWRT或iStoreOS下载地址

关键点

打开 /etc/config/network 文件:

vi /etc/config/network

找到你要修改的网络接口配置块(例如 config interface 'lan'),它可能类似于以下内容:

i进入编辑 ESC退出编辑 :wq保存

修改网卡接口信息

config interface 'lan'

option ifname 'eth0'

option proto 'static'

option ipaddr '192.168.1.100' /ip地址

option netmask '255.255.255.0' /子网掩码

option gateway '192.168.1.1' /网关

重新启动网络服务使更改生效:

/etc/init.d/network restart

最后输入ip就可以进入OpenWRT或iStoreOS系统了