openwrt UCI 配置解析错误

openwrt 重启网络服务:/etc/init.d/network restart时, UCI 解析文件的时候出现错误:

uci: Parse error (unterminated ") at line 35, byte 157

由于是刚配置完/etc/config/network文件,就在此文件下找原因。但是把35行删掉也没用。

就想着可能是其他文件的错误,输入命令“uci show"发现:

account.common.accmode=4
account.common.admin=af38ad37899c613300633d36eb372f725207a248
account.common.updatetime=20150626
uci: Parse error (unterminated ") at line 35, byte 157
dhcp.@dnsmasq[0]=dnsmasq
dhcp.@dnsmasq[0].domainneeded=1
dhcp.@dnsmasq[0].boguspriv=1

可能时/etc/config  account和dhcp之间的文件出了问题,逐个打开文件,发现时其中的一个文件的35行变量定义 只有单个引号引起的,去掉引号问题解决;

你可能感兴趣的:(openwrt UCI 配置解析错误)