OpenWrt实现802.11s组网模式
无线网卡wlan0正常后,输入一下命令iw dev wlan0 interface add mesh_iface type mpifconfig wlan0 downifconfig mesh_iface downiw dev mesh_iface set type mpiw dev mesh_iface set channel 7iw dev mesh_i...
OpenWrt初级开发教程,主要是面向初学者非常适合入门学习
无线网卡wlan0正常后,输入一下命令iw dev wlan0 interface add mesh_iface type mpifconfig wlan0 downifconfig mesh_iface downiw dev mesh_iface set type mpiw dev mesh_iface set channel 7iw dev mesh_i...
在OpenWrt/LEDE系统中处理JSON的方法,这里记录一下。假设有一个JSON文件cat /etc/ss.json{ "server": "8.8.8.8", "server_port": 443, ...
例如0口(其他口改命令即可)有网线插入root@Widora:/etc/hotplug.d/firmware# swconfig dev switch0 port 0 showPort 0: ...
Openwrt 烧uboot 需要慎重,一般买一个带不死uboot的路由器再折腾会比较安全,因为openwrt firmware对uboot分区进行了保护,而且带有不死uboot的路由器可以通过web界面刷firmware。 传说中的不死uboot 原版可以见下面的网址:https://github.com/pepe2k/u-boot_mod&nb...
在写openwrt程序的Makefile时如果忘记加上依赖关系,编译时就会报这样的错:Package example is missing dependencies for the following libraries: libpthread.so.0 librt.so.0...
执行openwrt的make menuconfig,选择sqlite并编译,然后就可以使用sqlite了。下面是一段初始化sqlite数据库的简单代码,可以在sqlite数据库里创建一个表并插入一条记录:#include <sqlite3.h> static int callback(void&nb...