check_site.lua 839 B

1234567891011121314151617181920212223
  1. for _, config in ipairs({'wifi24', 'wifi5'}) do
  2. if need_table(config .. '.ap', nil, false) then
  3. need_string(config .. '.ap.ssid')
  4. need_boolean(config .. '.ap.disabled', false)
  5. end
  6. if need_table(config .. '.ibss', nil, false) then
  7. need_string(config .. '.ibss.ssid')
  8. need_string_match(config .. '.ibss.bssid', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
  9. need_number(config .. '.ibss.mcast_rate', false)
  10. need_number(config .. '.ibss.vlan', false)
  11. need_boolean(config .. '.ibss.disabled', false)
  12. end
  13. if need_table(config .. '.mesh', nil, false) then
  14. need_string(config .. '.mesh.id')
  15. need_number(config .. '.mesh.mcast_rate', false)
  16. need_boolean(config .. '.mesh.disabled', false)
  17. end
  18. end
  19. need_boolean('mesh_on_wan', false)
  20. need_boolean('mesh_on_lan', false)