简介
最近项目接触到Openwrt的编译和使用,op本身是一个定制的linux系统,兼容的包和语言也有很多,随着物联网的发展,相信在路由器方面的应用会越来越多,luci作为一个已经在openwrt上集成的web管理工具有很强大的功能,但我的项目里面需要修改和使用自己的配置文件,因此整理一下lua+uci的使用。
lua使用uci
- openwrt-lua-uci官方介绍->地址
- lua+uci使用笔记
uci格式的配置文件在/etc/config/目录下
基本格式:
config interface 'wan'
option ifname 'eth0.2'
...
require("uci")
local x = uci.cursor()
local wanvalue = x:get("network","wan","ifname")
--value为eth0.2
```
````lua
require("uci")
local x = uci.cursor()
x:set("network", "wan", "ifname", "value")
x:commit("network")
```
如果config 没有name,需要进行循环
3. 使用lua+linux命令
>os.execute()
示例:
os.execute("cat /proc/uptime")
注意execute成功会返回0,在命令行中输入会显示结果,但
local res = os.execute("cat /proc/uptime") --注意res=0
如果需要在lua中获取output值,使用io.popen()方法
示例:
```lua
local uptime=assert (io.popen("cat /proc/uptime"))
for line in uptime:lines() do
print(line)
end
uptime:close()
```