2017-10-28 15:05:53 +00:00
|
|
|
need_string_match(in_domain('next_node.mac'), '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$', false)
|
2016-11-30 19:29:25 +00:00
|
|
|
|
2017-10-28 15:05:53 +00:00
|
|
|
if need_string_match(in_domain('next_node.ip4'), '^%d+.%d+.%d+.%d+$', false) then
|
|
|
|
need_string_match(in_domain('prefix4'), '^%d+.%d+.%d+.%d+/%d+$')
|
2016-11-30 19:29:25 +00:00
|
|
|
end
|
|
|
|
|
2017-10-28 15:05:53 +00:00
|
|
|
need_string_match(in_domain('next_node.ip6'), '^[%x:]+$', false)
|
2016-11-30 19:29:25 +00:00
|
|
|
|
|
|
|
|
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
|
2017-10-28 15:05:53 +00:00
|
|
|
need_string(in_domain(config .. '.ap.ssid'))
|
2017-06-26 20:45:42 +00:00
|
|
|
need_boolean(config .. '.ap.disabled', false)
|
|
|
|
end
|
2015-08-17 22:53:40 +00:00
|
|
|
end
|