openwrt国内镜像源地址 openwrt的官方服务器设在国外,国内的访问速度有时并不理想,可以通过镜像源的方法得以解决。 以下罗列一些常用的国内镜像源地址供大家使用: 中国科技大学教育网官方主镜像网站: http://mirrors.ustc.edu.cn/ OpenWrt源教育网高速镜像站点: http://openwrt.proxy.ustclug.org/ 清华大学开源软件镜像站: https://mi openwrt 2022年06月04日 0 点赞 0 评论 4049 浏览
openwrt 关闭 ipv6 ``` /etc/init.d/odhcpd disable /etc/init.d/odhcpd stop ``` openwrt 2022年06月04日 2 点赞 0 评论 2573 浏览
OpenWrt固件实现路由器定时重启方法 需要注意的是,一定要延迟重启,否则可能无限重启,官方给出的配置中,在 sleep 70 秒之后,使用 touch 写文件,应为路由器如果没有及时联网从NTP服务器上获取到时间,那么路由器的系统时间和重启的系统时间便一样,如果修改过文件,Openwrt 开机后会把最后修改或者访问的文件时间作为默认系统时间。因此延迟1min重启,可以避免这个问题。 openwrt 2022年06月04日 0 点赞 0 评论 4903 浏览
小米路由器 mini(r1cm) 刷机openwrt教程,引导帖子 - 下载小米路由 app绑定固件 - https://d.miwifi.com/rom/ssh root 密码 和 开 ssh 包 - 刷 开发版 固件 - http://www1.miwifi.com/miwifi_download.html - http://bigota.miwifi.com/xiaoqiang/rom/r1cm/miwifi_r1cm_firmwa openwrt 2022年06月04日 25 点赞 0 评论 16484 浏览
小米路由器 r3g 刷机简记 重置路由 小米路由绑定路由器 获取开发版系统 获取root 密码 和 miwifi_ssh.bin bread 获取 https://www.right.com.cn/forum/thread-2640204-1-1.html https://www.right.com.cn/forum/thread-2527199-1-1.html https://blog.csdn.net/tyhao openwrt 2022年06月04日 1 点赞 0 评论 2083 浏览
OpenWrt 开启sftp,方便文件管理 ```bash opkg update opkg install vsftpd openssh-sftp-server /etc/init.d/vsftpd enable /etc/init.d/vsftpd start ``` openwrt 2022年06月04日 4 点赞 0 评论 2886 浏览
openwrt 一键更新所有软件 opkg upgrade all packages openwrt 后台更新需要一个个的点,有点麻烦 通过 ssh 进入 路由器 然后执行以下命令就可以了 ``` opkg update opkg list-upgradable | awk -F ‘ – ‘ ‘{print $1}’ | xargs opkg upgrade ``` ``` opkg update opkg upgrade $(opkg list-upgradable | aw openwrt 2022年06月04日 5 点赞 0 评论 8229 浏览
openwrt 安装 php 运行环境 opkg install php7 php7-cgi uci add_list uhttpd.main.interpreter='.php=/usr/bin/php-cgi'uci commit uhttpd/etc/init.d/uhttpd restartopkg install php7-mod-curl php7-mod-pdo php7-mod-pdo-sqlite openwrt 2022年06月04日 0 点赞 0 评论 749 浏览
OpenWrt导航菜单中没有 挂载点 菜单解决方法 OpenWrt导航菜单中没有 挂载点 菜单 ,这时候我们就需要手动安装。安装方式也非常简单 执行下面的命令就可以了 openwrt 2022年06月04日 2 点赞 0 评论 6495 浏览
openwrt 报错:module ‘luci.cbi‘ not found 报错信息如下```bash/usr/lib/lua/luci/dispatcher.lua:1334: module 'luci.cbi' not found: no field package.preload['luci.cbi'] no file './luci/cbi.lua' no file '/usr/share/lua/luci/cbi.lua' no file '/u openwrt 2022年06月04日 2 点赞 0 评论 3541 浏览