路由器openwrt安装ipk第三方软件LuCi 提示:权限不足,无法读取UCI配置。
warning:
这篇文章距离上次修改已过1559天,其中的内容可能已经有所变动。
问题
路由器openwrt安装ipk第三方软件时,LuCi提示出问题:权限不足,无法读取UCI配置。
图是网上的
解决方法
/usr/share/rpcd/acl.d/luci-base.json 文件添加下面内容 是json文件,注意格式
添加以下代码到文件中
"uci-access": {
"description": "Grant uci write access to all configurations",
"read": {
"uci": [ "*" ]
},
"write": {
"uci": [ "*" ]
}
},
添加后效果如下:
{
"unauthenticated": {
"description": "Allow system feature probing",
"read": {
"ubus": {
"luci": [ "getFeatures" ]
}
}
},
"luci-base": {
"description": "Grant access to basic LuCI procedures",
"read": {
"file": {
"/": [ "list" ],
"/*": [ "list" ]
},
"ubus": {
"file": [ "list" ],
"uci": [ "changes", "get" ]
}
},
"write": {
"cgi-io": [ "upload" ],
"file": {
"/etc/luci-uploads/*": [ "write" ]
},
"ubus": {
"file": [ "remove" ],
"uci": [ "add", "apply", "confirm", "delete", "order", "rename", "set" ]
}
}
},
"uci-access": {
"description": "Grant uci write access to all configurations",
"read": {
"uci": [ "*" ]
},
"write": {
"uci": [ "*" ]
}
},
"luci-base-network-status": {
"description": "Grant access to network status information",
"read": {
"ubus": {
"luci-rpc": [ "getBoardJSON", "getHostHints", "getNetworkDevices", "getWirelessDevices" ],
"network": [ "get_proto_handlers" ],
"network.interface": [ "dump" ]
},
"uci": [ "luci", "network", "wireless" ]
}
}
}