check_site.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. for _, config in ipairs({'wifi24', 'wifi5'}) do
  2. local rates = {1000, 2000, 5500, 6000, 9000, 11000, 12000, 18000, 24000, 36000, 48000, 54000}
  3. rates = need_array_of(config .. '.supported_rates', rates, false) or rates
  4. if need_table(config .. '.ibss', nil, false) then
  5. need_string(config .. '.ibss.ssid')
  6. need_string_match(config .. '.ibss.bssid', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
  7. need_one_of(config .. '.ibss.mcast_rate', rates, false)
  8. need_number(config .. '.ibss.vlan', false)
  9. need_boolean(config .. '.ibss.disabled', false)
  10. end
  11. if need_table(config .. '.mesh', nil, false) then
  12. need_string(config .. '.mesh.id')
  13. need_one_of(config .. '.mesh.mcast_rate', rates, false)
  14. need_boolean(config .. '.mesh.disabled', false)
  15. end
  16. end
  17. need_boolean('mesh_on_wan', false)
  18. need_boolean('mesh_on_lan', false)
  19. if need_table('mesh', nil, false) and need_table('mesh.batman_adv', nil, false) then
  20. need_number('mesh.batman_adv.gw_sel_class', false)
  21. end
  22. need_string_match('next_node.mac', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
  23. if need_string_match('next_node.ip4', '^%d+.%d+.%d+.%d+$', false) then
  24. need_string_match('prefix4', '^%d+.%d+.%d+.%d+/%d+$')
  25. end
  26. need_string_match('next_node.ip6', '^[%x:]+$', false)