site.conf 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. -- This is an example site configuration for Gluon v2017.1+
  2. --
  3. -- Take a look at the documentation located at
  4. -- http://gluon.readthedocs.org/ for details.
  5. --
  6. -- This configuration will not work as it. You're required to make
  7. -- community specific changes to it!
  8. {
  9. -- Used for generated hostnames, e.g. freifunk-abcdef123456. (optional)
  10. -- hostname_prefix = 'freifunk-',
  11. -- Name of the community.
  12. site_name = 'Freifunk Alpha Centauri',
  13. -- Shorthand of the community.
  14. site_code = 'ffxx',
  15. -- Prefixes used within the mesh.
  16. -- prefix6 is required, prefix4 can be omitted if next_node.ip4
  17. -- is not set.
  18. prefix4 = '10.xxx.0.0/20',
  19. prefix6 = 'fdxx:xxxx:xxxx::/64',
  20. -- Timezone of your community.
  21. -- See http://wiki.openwrt.org/doc/uci/system#time_zones
  22. timezone = 'CET-1CEST,M3.5.0,M10.5.0/3',
  23. -- List of NTP servers in your community.
  24. -- Must be reachable using IPv6!
  25. ntp_servers = {'1.ntp.services.ffxx'},
  26. -- Wireless regulatory domain of your community.
  27. regdom = 'DE',
  28. -- Wireless configuration for 2.4 GHz interfaces.
  29. wifi24 = {
  30. -- Wireless channel.
  31. channel = 1,
  32. -- List of supported wifi rates (optional)
  33. -- Example removes 802.11b compatibility for better performance
  34. supported_rates = {6000, 9000, 12000, 18000, 24000, 36000, 48000, 54000},
  35. -- List of basic wifi rates (optional, required if supported_rates is set)
  36. -- Example removes 802.11b compatibility for better performance
  37. basic_rate = {6000, 9000, 18000, 36000, 54000},
  38. -- ESSID used for client network.
  39. ap = {
  40. ssid = 'alpha-centauri.freifunk.net',
  41. -- disabled = true, (optional)
  42. },
  43. mesh = {
  44. -- Adjust these values!
  45. id = 'ffxx-mesh',
  46. mcast_rate = 12000,
  47. -- disabled = true, (optional)
  48. },
  49. },
  50. -- Wireless configuration for 5 GHz interfaces.
  51. -- This should be equal to the 2.4 GHz variant, except
  52. -- for channel.
  53. wifi5 = {
  54. channel = 44,
  55. ap = {
  56. ssid = 'alpha-centauri.freifunk.net',
  57. },
  58. mesh = {
  59. id = 'ffxx-mesh',
  60. mcast_rate = 12000,
  61. },
  62. },
  63. -- The next node feature allows clients to always reach the node it is
  64. -- connected to using a known IP address.
  65. next_node = {
  66. -- anycast IPs of all nodes
  67. ip4 = '10.xxx.0.xxx',
  68. ip6 = 'fdxx:xxxx:xxxx::xxxx',
  69. -- anycast MAC of all nodes
  70. mac = 'xe:xx:xx:xx:xx:xx',
  71. },
  72. -- Options specific to routing protocols (optional)
  73. -- mesh = {
  74. -- Options specific to the batman-adv routing protocol (optional)
  75. -- batman_adv = {
  76. -- Gateway selection class (optional)
  77. -- The default class 20 is based on the link quality (TQ) only,
  78. -- class 1 is calculated from both the TQ and the announced bandwidth
  79. -- gw_sel_class = 1,
  80. -- },
  81. -- },
  82. mesh_vpn = {
  83. -- enabled = true,
  84. mtu = 1280,
  85. fastd = {
  86. -- Refer to http://fastd.readthedocs.org/en/latest/ to better understand
  87. -- what these options do.
  88. -- List of crypto-methods to use.
  89. methods = {'salsa2012+umac'},
  90. -- configurable = true,
  91. -- syslog_level = 'warn',
  92. groups = {
  93. backbone = {
  94. -- Limit number of connected peers to reduce bandwidth.
  95. limit = 1,
  96. -- List of peers.
  97. peers = {
  98. peer1 = {
  99. key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  100. -- This is a list, so you might add multiple entries.
  101. remotes = {'ipv4 "xxx.somehost.invalid" port xxxxxx'},
  102. },
  103. peer2 = {
  104. key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  105. -- You can also omit the ipv4 to allow both connection via ipv4 and ipv6
  106. remotes = {'"xxx.somehost2.invalid" port xxxxx'},
  107. },
  108. },
  109. -- Optional: nested peer groups
  110. -- groups = {
  111. -- backbone_sub = {
  112. -- ...
  113. -- },
  114. -- ...
  115. -- },
  116. },
  117. -- Optional: additional peer groups, possibly with other limits
  118. -- backbone2 = {
  119. -- ...
  120. -- },
  121. },
  122. },
  123. bandwidth_limit = {
  124. -- The bandwidth limit can be enabled by default here.
  125. enabled = false,
  126. -- Default upload limit (kbit/s).
  127. egress = 200,
  128. -- Default download limit (kbit/s).
  129. ingress = 3000,
  130. },
  131. },
  132. autoupdater = {
  133. -- Default branch. Don't forget to set GLUON_BRANCH when building!
  134. branch = 'stable',
  135. -- List of branches. You may define multiple branches.
  136. branches = {
  137. stable = {
  138. name = 'stable',
  139. -- List of mirrors to fetch images from. IPv6 required!
  140. mirrors = {'http://1.updates.services.ffhl/stable/sysupgrade'},
  141. -- Number of good signatures required.
  142. -- Have multiple maintainers sign your build and only
  143. -- accept it when a sufficient number of them have
  144. -- signed it.
  145. good_signatures = 2,
  146. -- List of public keys of maintainers.
  147. pubkeys = {
  148. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Alice
  149. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Bob
  150. 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', -- Mary
  151. },
  152. },
  153. },
  154. },
  155. -- Node roles
  156. -- roles = {
  157. -- default = 'node',
  158. -- list = {
  159. -- 'node',
  160. -- 'test',
  161. -- 'backbone',
  162. -- 'service',
  163. -- },
  164. -- },
  165. -- Skip setup mode (config mode) on first boot
  166. -- setup_mode = {
  167. -- skip = true,
  168. -- },
  169. -- config_mode = {
  170. -- Show/hide the altitude field
  171. -- geo_location = {
  172. -- show_altitude = false,
  173. -- },
  174. -- define if the contact field is obligatory (optional)
  175. -- owner = {
  176. -- obligatory = true
  177. -- },
  178. -- },
  179. }