日志归档

2017年4月发布的文章

中级开发教程

OpenWrt下VLAN的配置

阅读(12229)

想要改变你的路由器wan口和lan口配置或者添加wan口等就需要用到vlan配置 openwrt中的配置文件为/etc/config/network 如下将port0设置为wan口 config switch_vlan option device eth0 ...

初级开发教程

openwrt shell

阅读(3674)

杀掉udhcpc进程 ps | grep [u]dhcpc | awk '{print $1}' | xargs kill -9 查看已经连接的客户数 netstat -antp | grep :8010 | grep ESTABLISHED -c

初级开发教程

OpenWRT UCI

阅读(3630)

/etc/config/xtun config xtun 'network' option 'remote' '1.2.4.8' option 'port' '8010' #uci show xtun xtun.network=xtun xtun.network.remote=’1.2.4.8′ xtun....

中级开发教程

给LEDE/OpenWRT打补丁

阅读(6686)

参考资料 https://wiki.openwrt.org/doc/devel/patches https://lede-project.org/docs/guide-developer/use-patches-with-buildsystem 先安装quilt # apt-get install quilt ...