2017-06-26 20:45:42 +00:00
|
|
|
need_string_match('next_node.mac', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$', false)
|
2016-11-30 19:29:25 +00:00
|
|
|
|
|
|
|
if need_string_match('next_node.ip4', '^%d+.%d+.%d+.%d+$', false) then
|
2017-06-26 20:45:42 +00:00
|
|
|
need_string_match('prefix4', '^%d+.%d+.%d+.%d+/%d+$')
|
2016-11-30 19:29:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
need_string_match('next_node.ip6', '^[%x:]+$', false)
|
|
|
|
|
|
|
|
|
2015-08-17 22:53:40 +00:00
|
|
|
for _, config in ipairs({'wifi24', 'wifi5'}) do
|
2017-06-26 20:45:42 +00:00
|
|
|
if need_table(config .. '.ap', nil, false) then
|
|
|
|
need_string(config .. '.ap.ssid')
|
|
|
|
need_boolean(config .. '.ap.disabled', false)
|
|
|
|
end
|
2015-08-17 22:53:40 +00:00
|
|
|
end
|