config_panel.toml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. version = "1.0"
  2. [main]
  3. name = "Configuration"
  4. [main.service]
  5. name = ""
  6. optional = false
  7. [main.service.no_antenna]
  8. # The value is filled via a custom getter
  9. type = "boolean"
  10. visible = "false"
  11. [main.service.no_antenna_alert]
  12. ask = "No wifi antenna has been detected! If you use a wifi USB dongle and that this one is not listed here, try to unplug and replug it, then reload this page."
  13. type = "alert"
  14. style = "danger"
  15. visible = "no_antenna"
  16. [main.service.status]
  17. ask = "The status of your Hotspot is unknown."
  18. type = "alert"
  19. style = "info"
  20. visible = "! no_antenna"
  21. [main.service.service_enabled]
  22. ask = "Enable Hotspot"
  23. type = "boolean"
  24. visible = "! no_antenna"
  25. [main.service.wifi_device]
  26. ask = "Device"
  27. type = "select"
  28. choices.wlan0 = "wlan0"
  29. visible = "! no_antenna"
  30. [main.service.wifi_channel]
  31. ask = "Channel"
  32. type = "select"
  33. choices.1 = "1"
  34. choices.2 = "2"
  35. choices.3 = "3"
  36. choices.4 = "4"
  37. choices.5 = "5"
  38. choices.6 = "6"
  39. choices.7 = "7"
  40. choices.8 = "8"
  41. choices.9 = "9"
  42. choices.10 = "10"
  43. choices.11 = "11"
  44. visible = "! no_antenna"
  45. help = "Changing the channel may help with signal strength depending on neighbour WiFis"
  46. [main.hotspot]
  47. name = "Hotspot"
  48. optional = false
  49. visible = "! no_antenna"
  50. [main.hotspot.wifi_ssid]
  51. ask = "Name (SSID)"
  52. type = "string"
  53. pattern.regexp = '^[\w \-]{1,32}$'
  54. pattern.error = "SSID in this app are limited to letter, number space, dash and underscores."
  55. [main.hotspot.wifi_secure]
  56. ask = "Secure"
  57. type = "boolean"
  58. [main.hotspot.wifi_passphrase]
  59. ask = "Password (WPA2)"
  60. type = "string"
  61. redact = true
  62. optional = true
  63. visible = "wifi_secure"
  64. pattern.regexp = '^[a-zA-Z0-9]{8,63}$'
  65. pattern.error = "Only printable alphanumeric characters are permitted in your password. Maximal size 63 chars"
  66. [main.hotspot.advanced]
  67. ask = "Advanced settings"
  68. type = "boolean"
  69. [main.hotspot.ip4_nat_prefix]
  70. ask = "IPv4 NAT prefix (/24)"
  71. type = "string"
  72. visible = "advanced"
  73. pattern.regexp = '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'
  74. pattern.error = "Please provide a private /24 range in the format xxx.xxx.xxx"
  75. [main.hotspot.ip6_net]
  76. ask = "IPv6 delegated prefix"
  77. type = "string"
  78. optional = true
  79. visible = "advanced"
  80. pattern.regexp = '^[0-9a-fA-F:]+$'
  81. pattern.error = "Please provide a valid IPv6 Prefix"
  82. [main.hotspot.ip6_firewall]
  83. ask = "IPv6 firewall"
  84. type = "boolean"
  85. visible = "advanced"
  86. [main.hotspot.dns]
  87. ask = "DNS resolvers"
  88. type = "tags"
  89. optional = true
  90. visible = "advanced"
  91. pattern.regexp = '^([0-9.]{7,15}|[0-9a-fA-F:]+)$'
  92. pattern.error = "Not an ip"
  93. [main.hotspot.captive_portal]
  94. ask = "Captive portal"
  95. type = "boolean"
  96. visible = "advanced"
  97. help = "Activate the captive portal mode"
  98. [main.hotspot.captive_portal_url]
  99. ask = "Local captive portal URL"
  100. type = "string"
  101. visible = "advanced && captive_portal"
  102. help = "Local URL on which redirect onto when the user mac address is not yet allowed"