config_panel.toml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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 VPN 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.service.multissid]
  47. ask = "Number of hotspots to broadcast"
  48. type = "select"
  49. choices.1 = "1"
  50. choices.2 = "2"
  51. choices.3 = "3"
  52. visible = "! no_antenna"
  53. [main.hotspot1]
  54. name = "Hotspot 1"
  55. optional = false
  56. visible = "! no_antenna"
  57. [main.hotspot1.wifi_ssid__1]
  58. ask = "Name (SSID)"
  59. type = "string"
  60. bind = "array_settings()"
  61. pattern.regexp = '^[\w \-]{1,32}$'
  62. pattern.error = "SSID in this app are limited to letter, number space, dash and underscores."
  63. [main.hotspot1.wifi_secure__1]
  64. ask = "Secure"
  65. type = "boolean"
  66. bind = "array_settings()"
  67. [main.hotspot1.wifi_passphrase__1]
  68. ask = "Password (WPA2)"
  69. type = "string"
  70. bind = "array_settings()"
  71. redact = true
  72. optional = true
  73. visible = "wifi_secure__1"
  74. pattern.regexp = '^[a-zA-Z0-9]{8,63}$'
  75. pattern.error = "Only printable alphanumeric characters are permitted in your password. Maximal size 63 chars"
  76. [main.hotspot1.advanced__1]
  77. ask = "Advanced settings"
  78. type = "boolean"
  79. bind = "array_settings()"
  80. [main.hotspot1.ip4_nat_prefix__1]
  81. ask = "IPv4 NAT prefix (/24)"
  82. type = "string"
  83. bind = "array_settings()"
  84. visible = "advanced__1"
  85. pattern.regexp = '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'
  86. pattern.error = "Please provide a private /24 range in the format xxx.xxx.xxx"
  87. [main.hotspot1.ip6_net__1]
  88. ask = "IPv6 delegated prefix"
  89. type = "string"
  90. bind = "array_settings()"
  91. optional = true
  92. visible = "advanced__1"
  93. pattern.regexp = '^[0-9a-fA-F:]+$'
  94. pattern.error = "Please provide a valid IPv6 Prefix"
  95. [main.hotspot1.ip6_firewall__1]
  96. ask = "IPv6 firewall"
  97. type = "boolean"
  98. bind = "array_settings()"
  99. visible = "advanced__1"
  100. [main.hotspot1.dns__1]
  101. ask = "DNS resolvers"
  102. type = "tags"
  103. bind = "array_settings()"
  104. visible = "advanced__1"
  105. pattern.regexp = '^([0-9.]{7,15}|[0-9a-fA-F:]+)$'
  106. pattern.error = "Not an ip"
  107. [main.hotspot1.captive_portal__1]
  108. ask = "Captive portal"
  109. type = "boolean"
  110. bind = "array_settings()"
  111. visible = "advanced__1"
  112. help = "Activate the captive portal mode"
  113. [main.hotspot1.captive_portal_url__1]
  114. ask = "Local captive portal URL"
  115. type = "string"
  116. bind = "array_settings()"
  117. visible = "advanced__1 && captive_portal__1"
  118. help = "Local URL on which redirect onto when the user mac address is not yet allowed"
  119. [main.hotspot2]
  120. name = "Hotspot 2"
  121. visible = "! no_antenna && multissid >= 2"
  122. [main.hotspot2.wifi_ssid__2]
  123. ask = "Name (SSID)"
  124. type = "string"
  125. bind = "array_settings()"
  126. pattern.regexp = '^[\w \-]{1,32}$'
  127. pattern.error = "SSID in this app are limited to letter, number space, dash and underscores."
  128. [main.hotspot2.wifi_secure__2]
  129. ask = "Secure"
  130. type = "boolean"
  131. bind = "array_settings()"
  132. [main.hotspot2.wifi_passphrase__2]
  133. ask = "Password (WPA2)"
  134. type = "string"
  135. bind = "array_settings()"
  136. redact = true
  137. visible = "wifi_secure__2"
  138. pattern.regexp = '^[a-zA-Z0-9]{8,63}$'
  139. pattern.error = "Only printable alphanumeric characters are permitted in your password. Maximal size 63 chars"
  140. [main.hotspot2.advanced__2]
  141. ask = "Advanced settings"
  142. type = "boolean"
  143. bind = "array_settings()"
  144. [main.hotspot2.ip4_nat_prefix__2]
  145. ask = "IPv4 NAT prefix (/24)"
  146. type = "string"
  147. bind = "array_settings()"
  148. visible = "advanced__2"
  149. pattern.regexp = '^[0-9.]{7,15}$'
  150. pattern.error = "Please provide a valid IP"
  151. [main.hotspot2.ip6_net__2]
  152. ask = "IPv6 delegated prefix"
  153. type = "string"
  154. bind = "array_settings()"
  155. visible = "advanced__2"
  156. pattern.regexp = '^[0-9a-fA-F:]+$'
  157. pattern.error = "Please provide a valid IPv6 Prefix"
  158. [main.hotspot2.ip6_firewall__2]
  159. ask = "IPv6 firewall"
  160. type = "boolean"
  161. bind = "array_settings()"
  162. visible = "advanced__2"
  163. [main.hotspot2.dns__2]
  164. ask = "DNS resolvers"
  165. type = "tags"
  166. bind = "array_settings()"
  167. visible = "advanced__2"
  168. pattern.regexp = '^([0-9.]{7,15}|[0-9a-fA-F:]+)$'
  169. pattern.error = "Not an ip"
  170. [main.hotspot2.captive_portal__2]
  171. ask = "Captive portal"
  172. type = "boolean"
  173. bind = "array_settings()"
  174. visible = "advanced__2"
  175. help = "Activate the captive portal mode"
  176. [main.hotspot2.captive_portal_url__2]
  177. ask = "Local captive portal URL"
  178. type = "string"
  179. bind = "array_settings()"
  180. visible = "advanced__2 && captive_portal__2"
  181. help = "Local URL on which redirect onto when the user mac address is not yet allowed"
  182. [main.hotspot3]
  183. name = "Hotspot 3"
  184. visible = "! no_antenna && multissid >= 3"
  185. [main.hotspot3.wifi_ssid__3]
  186. ask = "Name (SSID)"
  187. type = "string"
  188. bind = "array_settings()"
  189. pattern.regexp = '^[\w \-]{1,32}$'
  190. pattern.error = "SSID in this app are limited to letter, number space, dash and underscores."
  191. [main.hotspot3.wifi_secure__3]
  192. ask = "Secure"
  193. type = "boolean"
  194. bind = "array_settings()"
  195. [main.hotspot3.wifi_passphrase__3]
  196. ask = "Password (WPA2)"
  197. type = "string"
  198. bind = "array_settings()"
  199. redact = true
  200. visible = "wifi_secure__3"
  201. pattern.regexp = '^[a-zA-Z0-9]{8,63}$'
  202. pattern.error = "Only printable alphanumeric characters are permitted in your password. Maximal size 63 chars"
  203. [main.hotspot3.advanced__3]
  204. ask = "Advanced settings"
  205. type = "boolean"
  206. bind = "array_settings()"
  207. [main.hotspot3.ip4_nat_prefix__3]
  208. ask = "IPv4 NAT prefix (/24)"
  209. type = "string"
  210. bind = "array_settings()"
  211. visible = "advanced__3"
  212. pattern.regexp = '^[0-9.]{7,15}$'
  213. pattern.error = "Please provide a valid IP"
  214. [main.hotspot3.ip6_net__3]
  215. ask = "IPv6 delegated prefix"
  216. type = "string"
  217. bind = "array_settings()"
  218. visible = "advanced__3"
  219. pattern.regexp = '^[0-9a-fA-F:]+$'
  220. pattern.error = "Please provide a valid IPv6 Prefix"
  221. [main.hotspot3.ip6_firewall__3]
  222. ask = "IPv6 firewall"
  223. type = "boolean"
  224. bind = "array_settings()"
  225. visible = "advanced__3"
  226. [main.hotspot3.dns__3]
  227. ask = "DNS resolvers"
  228. type = "tags"
  229. bind = "array_settings()"
  230. visible = "advanced__3"
  231. pattern.regexp = '^([0-9.]{7,15}|[0-9a-fA-F:]+)$'
  232. pattern.error = "Not an ip"
  233. [main.hotspot3.captive_portal__3]
  234. ask = "Captive portal"
  235. type = "boolean"
  236. bind = "array_settings()"
  237. visible = "advanced__3"
  238. help = "Activate the captive portal mode"
  239. [main.hotspot3.captive_portal_url__3]
  240. ask = "Local captive portal URL"
  241. type = "string"
  242. bind = "array_settings()"
  243. visible = "advanced__3 && captive_portal__3"
  244. help = "Local URL on which redirect onto when the user mac address is not yet allowed"